-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Cleaned up text in pyplot_tutorial.rst #5147
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
Conversation
keeps track of the current figure and plotting area, and the plotting | ||
some change to a figure: e.g., creates a figure, creates a plotting area | ||
in a figure, plots some lines in a plotting area, decorates the plot | ||
with labels, etc. In :mod:`matplotlib.pyplot` various states are preserved |
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 would be a bit more explicit about what state is tracked which is only the current figure and axes (there is also a gci
, but it should not be used).
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.
But the saved current image is used by set_cmap
, clim
, and colorbar
, so it is an important part of the state.
…ces after commas per efiring.
I have updated the document per these remarks, except: Eric, should I add the current saved image to the list of state info kept by the function-call API? |
On 2015/09/30 4:19 PM, Gene Callahan wrote:
I would say that if you list current figure and axes, then you should |
Ok, added. |
DOC: Cleaned up text in pyplot_tutorial.rst
DOC: Cleaned up text in pyplot_tutorial.rst
Only minor changes to grammar, etc.