Phân phối dữ liệu

Feature Engineering cho Machine Learning bằng Python

Robert O'Callaghan

Director of Data Science, Ordergroove

Giả định về phân phối

Feature Engineering cho Machine Learning bằng Python

Quan sát dữ liệu của bạn

import matplotlib as plt

df.hist()
plt.show()

Feature Engineering cho Machine Learning bằng Python

Đào sâu với box plot

Feature Engineering cho Machine Learning bằng Python

Box plot trong pandas

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

Feature Engineering cho Machine Learning bằng Python

Đối chiếu phân phối

import seaborn as sns
sns.pairplot(df)

Feature Engineering cho Machine Learning bằng Python

Chi tiết thêm về các phân phối

df.describe()

Feature Engineering cho Machine Learning bằng Python

Luyện tập nào!

Feature Engineering cho Machine Learning bằng Python

Preparing Video For Download...