Visualisation de données intermédiaire avec Seaborn
Chris Moffitt
Instructor
regplot crée un nuage de points avec une droite de régressiondisplotdata, x et y doivent être définiessns.regplot(data=df, x="alcohol", y="pH" )

regplot — bas niveausns.regplot(data=df,
x="alcohol",
y="quality")

lmplot — haut niveausns.lmplot(data=df,
x="alcohol",
y="quality")

hue)sns.lmplot(data=df,
x="quality",
y="alcohol",
hue="type")

col)sns.lmplot(data=df,
x="quality",
y="alcohol",
col="type")

Visualisation de données intermédiaire avec Seaborn