Distribuzioni dei dati

Feature Engineering per il Machine Learning in Python

Robert O'Callaghan

Director of Data Science, Ordergroove

Assunzioni sulla distribuzione

Feature Engineering per il Machine Learning in Python

Osservare i tuoi dati

import matplotlib as plt

df.hist()
plt.show()

Feature Engineering per il Machine Learning in Python

Approfondire con i box plot

Feature Engineering per il Machine Learning in Python

Box plot in pandas

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

Feature Engineering per il Machine Learning in Python

Confrontare le distribuzioni

import seaborn as sns
sns.pairplot(df)

Feature Engineering per il Machine Learning in Python

Dettagli aggiuntivi sulle tue distribuzioni

df.describe()

Feature Engineering per il Machine Learning in Python

Esercitiamoci!

Feature Engineering per il Machine Learning in Python

Preparing Video For Download...