pandas dataframe histogram of column code example
Example 1: pandas plot histogram
ax = df.plot.hist(bins=12, alpha=0.5)
Example 2: show distribution pandas coloumns
df['age'] == ['14','16','23','54']
df['age'].hist()
ax = df.plot.hist(bins=12, alpha=0.5)
df['age'] == ['14','16','23','54']
df['age'].hist()