Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Change *subplot(111, ...) to *subplot(...) as 111 is the default.#18552
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
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.
Some questions out of curiosity but they're not blockers
Uh oh!
There was an error while loading.Please reload this page.
tutorials/introductory/pyplot.py Outdated
@@ -259,7 +259,7 @@ def f(t): | |||
############################################################################### | |||
# The `~.pyplot.figure` call here is optional because | |||
# ``figure(1)`` will be created by default, just as a ``subplot(111)`` | |||
# ``figure(1)`` will be created by default, just as a ``subplot()`` |
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.
Does this need the figure(1)
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.
No. I've rewritten the sentence to make more sense. But don't get me started, otherwise I'll rewrite the whole tutorial 😝.
Uh oh!
There was an error while loading.Please reload this page.
Partly re-does#17335.
Doing everything in one action seems a bit much since every occurrence must be checked. There some rare cases in which we want to leave the numbers in or want to do something else.
All changes are either in tutorials/examples, docstrings, comments or tests.