databricks.koalas.Series.plot.barh

plot.barh(**kwds)

Make a horizontal bar plot.

A horizontal bar plot is a plot that presents quantitative data with rectangular bars with lengths proportional to the values that they represent. A bar plot shows comparisons among discrete categories. One axis of the plot shows the specific categories being compared, and the other axis represents a measured value.

Parameters
xlabel or position, default DataFrame.index

Column to be used for categories.

ylabel or position, default All numeric columns in dataframe

Columns to be plotted from the DataFrame.

**kwds

Keyword arguments to pass on to databricks.koalas.DataFrame.plot().

Returns
:class:`matplotlib.axes.Axes` or numpy.ndarray of them

See also

matplotlib.axes.Axes.bar

Plot a vertical bar plot using matplotlib.

Examples

>>> df = ks.DataFrame({'lab': ['A', 'B', 'C'], 'val': [10, 30, 20]})
>>> plot = df.val.plot.barh()
../../_images/databricks-koalas-Series-plot-barh-1.png