pandas.Series.plot.hist¶
Draw one histogram of the DataFrame’s columns.
A histogram is a representation of the distribution of data.
This function groups the values of all given Series in the DataFrame
into bins and draws all bins in one matplotlib.axes.Axes.
This is useful when the DataFrame’s Series are in a similar scale.
- param by
- str or sequence, optional
Column in the DataFrame to group by.
- param bins
- int, default 10
Number of histogram bins to be used. **kwds Additional keyword arguments are documented in
DataFrame.plot().
- return
class:matplotlib.AxesSubplot Return a histogram plot.
Warning
This feature is currently unsupported by Intel Scalable Dataframe Compiler