pandas.Series.plot

Series.plot(series, label=None, kind='line', use_index=True, rot=None, xticks=None, yticks=None, xlim=None, ylim=None, ax=None, style=None, grid=None, legend=False, logx=False, logy=False, secondary_y=False, **kwds)

Plot the input series with the index on the x-axis using matplotlib

label : label argument to provide to plot kind : {‘line’, ‘bar’, ‘barh’, ‘kde’, ‘density’}

bar : vertical bar plot barh : horizontal bar plot kde/density : Kernel Density Estimation plot
use_index : boolean, default True
Plot index as axis tick labels
rot : int, default None
Rotation for tick labels
xticks : sequence
Values to use for the xticks
yticks : sequence
Values to use for the yticks

xlim : 2-tuple/list ylim : 2-tuple/list ax : matplotlib axis object

If not passed, uses gca()
style : string, default matplotlib default
matplotlib line style to use

grid : matplot grid legend: matplot legende logx : boolean, default False

For line plots, use log scaling on x axis
logy : boolean, default False
For line plots, use log scaling on y axis
secondary_y : boolean or sequence of ints, default False
If True then y-axis will be on the right

figsize : a tuple (width, height) in inches kwds : keywords

Options to pass to matplotlib plotting method

See matplotlib documentation online for more on this subject