Skip to content

Instantly share code, notes, and snippets.

@dipanjanS
Created January 10, 2018 19:14
Show Gist options
  • Save dipanjanS/8c33ec662c8fb5be3dccb1a20dcd9d16 to your computer and use it in GitHub Desktop.
Save dipanjanS/8c33ec662c8fb5be3dccb1a20dcd9d16 to your computer and use it in GitHub Desktop.
# Visualizing 3-D numeric data with a bubble chart
# length, breadth and size
plt.scatter(wines['fixed acidity'], wines['alcohol'], s=wines['residual sugar']*25,
alpha=0.4, edgecolors='w')
plt.xlabel('Fixed Acidity')
plt.ylabel('Alcohol')
plt.title('Wine Alcohol Content - Fixed Acidity - Residual Sugar',y=1.05)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment