-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Improve docs on contourf extend #13047
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 our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve docs on contourf extend #13047
Conversation
This seems fine, but isn’t the underlying issue that the contour is not being updated automatically? |
I don‘t know if that‘s possible. Does the cmap know about the associated scalar mappable? Otherwise there‘s no way that it can notify the QuadContourSet that it needs to update. |
|
||
cs = plt.contourf(h, levels=[10, 30, 50], | ||
colors=['#808080', '#A0A0A0', '#C0C0C0'], extend='both') | ||
cs.cmap.set_over('red') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is probably better to show updating the color map before creating the contour and then passing that in to contourf
. I think that is a bit for idiomatic and does not expose this updating edge-case in the examples.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, the point is we are creating the colormap on-the-fly so can not do that.
We have not noticed the lack of update on images because we unconditionally consult the colormap every time we draw.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updating a QuadContourSet
on each draw (to get automatic updates and the same behavior as with images) would essentially mean that we have to run the full code of changed()
. Not quite sure if we want to do this.
I'm just being defensive here and clearly document the current behavior.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I agree this is the conservative path here.
I guess not. I wonder if what is actually needed is a |
I guess not. Other possible API changes: It‘s actually not reasonable to define the over/under colors at another time compared to the regular colors. Therefore one could:
|
5d5eabd
to
8ebdfb1
Compare
8ebdfb1
to
bb4b272
Compare
For now, I'd leave this as is and just clearly document the current behavior. This is what this PR is about. Everything else is beyond the scope of the PR (and not a battle I want to fight right now). So, by me, the PR is ready to go in. Note: Travis failure is due to #13137 and unrelated to this PR. |
…047-on-v3.0.x Backport PR #13047 on branch v3.0.x (Improve docs on contourf extend)
PR Summary
Based on #13038 I've rewritten the docstring for
contourf
extend
to better explain how to use it.