Table Of Contents

Search

Enter search terms or a module, class or function name.

pandas.Series.plot.line

Series.plot.line(**kwds)[source]

Line plot

Parameters:

`**kwds` : optional

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

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

Examples

>>> s = pd.Series([1, 3, 2])
>>> s.plot.line()
../_images/pandas-Series-plot-line-1.png
Scroll To Top