Guest User

Untitled

a guest
Jan 19th, 2018
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. # Visualizing 3-D mix data using kernel density plots
  2. # leveraging the concepts of hue for categorical dimension
  3. ax = sns.kdeplot(white_wine['sulphates'], white_wine['alcohol'],
  4. cmap="YlOrBr", shade=True, shade_lowest=False)
  5. ax = sns.kdeplot(red_wine['sulphates'], red_wine['alcohol'],
  6. cmap="Reds", shade=True, shade_lowest=False)
Add Comment
Please, Sign In to add comment