pandas.DataFrame.hist¶
- DataFrame.hist(data, grid=True, xlabelsize=None, xrot=None, ylabelsize=None, yrot=None, ax=None, **kwds)¶
Draw Histogram the DataFrame’s series using matplotlib / pylab.
Parameters : grid : boolean, default True
Whether to show axis grid lines
xlabelsize : int, default None
If specified changes the x-axis label size
xrot : float, default None
rotation of x axis labels
ylabelsize : int, default None
If specified changes the y-axis label size
yrot : float, default None
rotation of y axis labels
ax : matplotlib axes object, default None
kwds : other plotting keyword arguments
To be passed to hist function