Distribuții de date

Ingineria caracteristicilor pentru Machine Learning în Python

Robert O'Callaghan

Director of Data Science, Ordergroove

Ipoteze despre distribuții

Ingineria caracteristicilor pentru Machine Learning în Python

Explorarea datelor

import matplotlib as plt

df.hist()
plt.show()

Ingineria caracteristicilor pentru Machine Learning în Python

Aprofundare cu box plot-uri

Ingineria caracteristicilor pentru Machine Learning în Python

Box plot-uri în pandas

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

Ingineria caracteristicilor pentru Machine Learning în Python

Compararea distribuțiilor

import seaborn as sns
sns.pairplot(df)

Ingineria caracteristicilor pentru Machine Learning în Python

Detalii suplimentare despre distribuții

df.describe()

Ingineria caracteristicilor pentru Machine Learning în Python

Să exersăm!

Ingineria caracteristicilor pentru Machine Learning în Python

Preparing Video For Download...