Skip to content

Instantly share code, notes, and snippets.

@dipanjanS
Created January 10, 2018 17:33
Show Gist options
  • Save dipanjanS/f09d2611e11069ecfd5643f8ed02019e to your computer and use it in GitHub Desktop.
Save dipanjanS/f09d2611e11069ecfd5643f8ed02019e to your computer and use it in GitHub Desktop.
# Pair-wise Scatter Plots
cols = ['density', 'residual sugar', 'total sulfur dioxide', 'fixed acidity']
pp = sns.pairplot(wines[cols], size=1.8, aspect=1.8,
plot_kws=dict(edgecolor="k", linewidth=0.5),
diag_kind="kde", diag_kws=dict(shade=True))
fig = pp.fig
fig.subplots_adjust(top=0.93, wspace=0.3)
t = fig.suptitle('Wine Attributes Pairwise Plots', fontsize=14)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment