Created
January 10, 2018 19:14
-
-
Save dipanjanS/8c33ec662c8fb5be3dccb1a20dcd9d16 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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