数据分布

Python 中的机器学习特征工程

Robert O'Callaghan

Director of Data Science, Ordergroove

分布假设

Python 中的机器学习特征工程

观察数据

import matplotlib as plt

df.hist()
plt.show()

Python 中的机器学习特征工程

用箱线图更深入地分析

Python 中的机器学习特征工程

pandas 中的箱线图

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

Python 中的机器学习特征工程

配对分布图

import seaborn as sns
sns.pairplot(df)

Python 中的机器学习特征工程

分布的更多细节

df.describe()

Python 中的机器学习特征工程

Passons à la pratique !

Python 中的机器学习特征工程

Preparing Video For Download...