From 4d8aa2b16b9b6f9597b7f74fbf2260a6beb0de2c Mon Sep 17 00:00:00 2001 From: "K.-Michael Aye" Date: Wed, 7 Nov 2012 20:29:03 -0800 Subject: [PATCH] Updating help text for plot_series description for parameter 'kind' was given twice. --- pandas/tools/plotting.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/pandas/tools/plotting.py b/pandas/tools/plotting.py index 00724a2dc35a0..98cf676c60a4d 100644 --- a/pandas/tools/plotting.py +++ b/pandas/tools/plotting.py @@ -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 @@ -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