databricks.koalas.Series.plot.bar

plot.bar(**kwds)

Vertical bar plot.

Parameters
**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.bar()
../../_images/databricks-koalas-Series-plot-bar-1.png