Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
FIX: fix second error line drawing codepath#5401
New issue
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
Now that `plot` knows how to dig into pandas Series to extracta label, make sure all internal calls to `plot` in `errorbar` pass`label='_nolegend_'`.Closesmatplotlib#5393
You need to pop off the label from kwargs first in order to prevent duplicate kwarg entries. |
That is done way at the top, seehttps://github.com/matplotlib/matplotlib/blob/master/lib/matplotlib/axes/_axes.py#L2789 The two major over-hauls that need to happen in errorbar are a) use z-order to specify above/below so we only have one code path there b) promote containers to full artists so that the |
Ah, ok. This makes sense to me as a good stop-gap solution. |
FIX: fix second error line drawing codepath
Now that
plot
knows how to dig into pandas Series to extracta label, make sure all internal calls to
plot
inerrorbar
passlabel='_nolegend_'
.Closes#5393
This is a minimal fix without tests, errorbar needs some more general attention.