Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Backport PR #20935 on branch v3.5.x (Add ColormapsRegistry as experimental and add it to pyplot)#21099
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
Merged
timhoffm merged 1 commit intomatplotlib:v3.5.xfrommeeseeksmachine:auto-backport-of-pr-20935-on-v3.5.xSep 16, 2021
Uh oh!
There was an error while loading.Please reload this page.
Merged
Backport PR #20935 on branch v3.5.x (Add ColormapsRegistry as experimental and add it to pyplot)#21099
Changes fromall commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Jump to file
Failed to load files.
Loading
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
3 changes: 2 additions & 1 deletiondoc/api/pyplot_summary.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
24 changes: 14 additions & 10 deletionsdoc/users/next_whats_new/colormaps.rst
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,22 @@ | ||
Colormap registry (experimental) | ||
-------------------------------- | ||
Colormaps are now managed via `matplotlib.colormaps` (or `.pyplot.colormaps`), | ||
which is a `.ColormapRegistry`. While we are confident that the API is final, | ||
we formally mark it as experimental for 3.5 because we want to keep the option | ||
to still adapt the API for 3.6 should the need arise. | ||
Colormaps can be obtained using item access:: | ||
import matplotlib.pyplot asplt | ||
cmap =plt.colormaps['viridis'] | ||
To register new colormaps use:: | ||
plt.colormaps.register(my_colormap) | ||
We recommend to use the new API instead of the `~.cm.get_cmap` and | ||
`~.cm.register_cmap` functions for new code. `matplotlib.cm.get_cmap` and | ||
`matplotlib.cm.register_cmap` will eventually be deprecated and removed. | ||
Within `.pyplot` ``plt.get_cmap()`` and ``plt.register_cmap()`` will continue | ||
to be supported for backward compatibility. |
3 changes: 1 addition & 2 deletionsexamples/images_contours_and_fields/contourf_demo.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletionsexamples/images_contours_and_fields/demo_bboximage.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletionexamples/images_contours_and_fields/pcolormesh_levels.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
3 changes: 1 addition & 2 deletionsexamples/images_contours_and_fields/quadmesh_demo.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletionexamples/lines_bars_and_markers/horizontal_barchart_distribution.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletionexamples/mplot3d/polys3d.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
5 changes: 2 additions & 3 deletionsexamples/pie_and_polar_charts/nested_pie.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletionexamples/userdemo/colormap_interactive_adjustment.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletionslib/matplotlib/cm.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.Learn more about bidirectional Unicode characters
Oops, something went wrong.
Uh oh!
There was an error while loading.Please reload this page.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.