pandas.Series.hist¶
- Series.hist(by=None, ax=None, grid=True, xlabelsize=None, xrot=None, ylabelsize=None, yrot=None, **kwds)¶
Draw histogram of the input series using matplotlib
- by : object, optional
- If passed, then used to form histograms for separate groups
- ax : matplotlib axis object
- If not passed, uses gca()
- 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
- kwds : keywords
- To be passed to the actual plotting function
See matplotlib documentation online for more on this