Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 3 additions & 4 deletions pandas/tools/plotting.py
Original file line number Diff line number Diff line change
Expand Up @@ -1301,7 +1301,9 @@ def plot_series(series, label=None, kind='line', use_index=True, rot=None,
Parameters
----------
label : label argument to provide to plot
kind : {'line', 'bar'}
kind : {'line', 'bar', 'barh'}
bar : vertical bar plot
barh : horizontal bar plot
rot : int, default 30
Rotation for tick labels
use_index : boolean, default True
Expand All @@ -1312,9 +1314,6 @@ def plot_series(series, label=None, kind='line', use_index=True, rot=None,
matplotlib line style to use
ax : matplotlib axis object
If not passed, uses gca()
kind : {'line', 'bar', 'barh'}
bar : vertical bar plot
barh : horizontal bar plot
logy : boolean, default False
For line plots, use log scaling on y axis
xticks : sequence
Expand Down