Created
January 10, 2018 18:41
-
-
Save dipanjanS/05c97d038b07da329c132d881900c059 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
| # Box Plots | |
| f, (ax) = plt.subplots(1, 1, figsize=(12, 4)) | |
| f.suptitle('Wine Quality - Alcohol Content', fontsize=14) | |
| sns.boxplot(x="quality", y="alcohol", data=wines, ax=ax) | |
| ax.set_xlabel("Wine Quality",size = 12,alpha=0.8) | |
| ax.set_ylabel("Wine Alcohol %",size = 12,alpha=0.8) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment