Seaborn 資料視覺化中級
Chris Moffitt
Instructor
regplot 會繪製散佈圖並加上迴歸線displot 類似data、x、y 變數sns.regplot(data=df, x="alcohol", y="pH" )

regplot-低階sns.regplot(data=df,
x="alcohol",
y="quality")

lmplot-高階sns.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 資料視覺化中級