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