We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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')
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')
The text was updated successfully, but these errors were encountered:
closing as stale. pls reopen if still an issue.
Sorry, something went wrong.
No branches or pull requests
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:
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:
The text was updated successfully, but these errors were encountered: