Skip to content

Instantly share code, notes, and snippets.

@dipanjanS
Created January 10, 2018 18:41
Show Gist options
  • Save dipanjanS/05c97d038b07da329c132d881900c059 to your computer and use it in GitHub Desktop.
Save dipanjanS/05c97d038b07da329c132d881900c059 to your computer and use it in GitHub Desktop.
# 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