pandas 0.7.2 documentation

pandas.Series.plot

Series.plot(label=None, kind='line', use_index=True, rot=30, ax=None, style='-', grid=True, logy=False, **kwds)

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

Parameters :

label : label argument to provide to plot

kind : {‘line’, ‘bar’}

rot : int, default 30

Rotation for tick labels

use_index : boolean, default True

Plot index as axis tick labels

ax : matplotlib axis object

If not passed, uses gca()

style : string, default ‘-‘

matplotlib line style to use

kwds : keywords

To be passed to the actual plotting function

Notes

See matplotlib documentation online for more on this subject Intended to be used in ipython –pylab mode