Data-distributies

Feature engineering voor Machine Learning in Python

Robert O'Callaghan

Director of Data Science, Ordergroove

Aannames over distributies

Feature engineering voor Machine Learning in Python

Je data bekijken

import matplotlib as plt

df.hist()
plt.show()

Feature engineering voor Machine Learning in Python

Dieper inzoomen met boxplots

Feature engineering voor Machine Learning in Python

Boxplots in pandas

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

Feature engineering voor Machine Learning in Python

Distributies koppelen

import seaborn as sns
sns.pairplot(df)

Feature engineering voor Machine Learning in Python

Meer details over je distributies

df.describe()

Feature engineering voor Machine Learning in Python

Laten we oefenen!

Feature engineering voor Machine Learning in Python

Preparing Video For Download...