Guest User

Untitled

a guest
Jan 19th, 2018
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. # Box Plots
  2. f, (ax) = plt.subplots(1, 1, figsize=(12, 4))
  3. f.suptitle('Wine Quality - Alcohol Content', fontsize=14)
  4.  
  5. sns.boxplot(x="quality", y="alcohol", data=wines, ax=ax)
  6. ax.set_xlabel("Wine Quality",size = 12,alpha=0.8)
  7. ax.set_ylabel("Wine Alcohol %",size = 12,alpha=0.8)
Add Comment
Please, Sign In to add comment