pandas-dev/pandas

Plot method ignores upper and lower error bar arguments

theandygross opened this issue · 1 comments

This seems to be specific to Pandas as opposed to matplotlib. Worked as desired as of a few months ago when I last updated from master.

This is the desired behavior in matplotlib:

barh([0,1], [.3, .5], xerr=[[.1,.2], [.3,.4]],
     color = ['red','green'],
     ecolor='black')

image

In the Pandas call, it seems to ignore the second error bar argument, both the upper and lower bounds of the error bar are the same:

s = pd.Series([.3,.5])
s.plot(kind='barh', xerr=[[.1,.2], [.3,.4]],
       color = ['red','green'],
       ecolor='black')

image

closing as stale. pls reopen if still an issue.