# Visualization is the easiest way to have an inference about the overall data and the outliers. n = 1 plt.figure(figsize=(18,15)) for column in df.describe().columns: plt.subplot(5, 4, n) n = n+1 sns.boxplot(df[column]) plt.tight_layout()