Seaborn ile Orta Düzey Veri Görselleştirme
Chris Moffitt
Instructor
regplot bir saçılım grafiği ve regresyon çizgisi oluştururdisplot'a benzerdata, x ve y değişkenleri tanımlanmalısns.regplot(data=df, x="alcohol", y="pH" )

regplot - düşük seviyesns.regplot(data=df,
x="alcohol",
y="quality")

lmplot - yüksek seviyesns.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")

Seaborn ile Orta Düzey Veri Görselleştirme