การกระจายของข้อมูล

Feature Engineering สำหรับ Machine Learning ใน Python

Robert O'Callaghan

Director of Data Science, Ordergroove

สมมติฐานเกี่ยวกับการกระจาย

Feature Engineering สำหรับ Machine Learning ใน Python

สังเกตข้อมูลของคุณ

import matplotlib as plt

df.hist()
plt.show()

Feature Engineering สำหรับ Machine Learning ใน Python

เจาะลึกด้วย box plot

Feature Engineering สำหรับ Machine Learning ใน Python

Box plot ใน pandas

df[['column_1']].boxplot()
plt.show()

Feature Engineering สำหรับ Machine Learning ใน Python

การจับคู่การกระจาย

import seaborn as sns
sns.pairplot(df)

Feature Engineering สำหรับ Machine Learning ใน Python

รายละเอียดเพิ่มเติมเกี่ยวกับการกระจาย

df.describe()

Feature Engineering สำหรับ Machine Learning ใน Python

มาฝึกกันเถอะ!

Feature Engineering สำหรับ Machine Learning ใน Python

Preparing Video For Download...