Feature Engineering for Machine Learning in Python
Robert O'Callaghan
Director of Data Science, Ordergroove

import matplotlib as plt
df.hist()
plt.show()


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

import seaborn as sns
sns.pairplot(df)

df.describe()

Feature Engineering for Machine Learning in Python