Pandas Hist normalisés

# plot normalized histogram directly from dataframe function
df.hist(bins=20, weights=np.ones_like(df[df.columns[0]]) / len(df))
nomjeeb