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()
- axes :