Guest User

Untitled

a guest
Jan 19th, 2018
104
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. # Pair-wise Scatter Plots
  2. cols = ['density', 'residual sugar', 'total sulfur dioxide', 'fixed acidity']
  3. pp = sns.pairplot(wines[cols], size=1.8, aspect=1.8,
  4. plot_kws=dict(edgecolor="k", linewidth=0.5),
  5. diag_kind="kde", diag_kws=dict(shade=True))
  6.  
  7. fig = pp.fig
  8. fig.subplots_adjust(top=0.93, wspace=0.3)
  9. t = fig.suptitle('Wine Attributes Pairwise Plots', fontsize=14)
Add Comment
Please, Sign In to add comment