databricks.koalas.Series.plot.hist

plot.hist(bins=10, **kwds)

Draw one histogram of the DataFrame’s columns.

Parameters
binsinteger, default 10

Number of histogram bins to be used

**kwdsoptional

Additional keyword arguments are documented in Koalas.Series.plot().

Returns
axesmatplotlib.axes.Axes or numpy.ndarray of them

Examples

Basic plot.

>>> s = ks.Series([1, 3, 2])
>>> ax = s.plot.hist()
../../_images/databricks-koalas-Series-plot-hist-1.png