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 subplot docs#29471
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.
Fix subplot docs#29471
Changes fromall commits
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1450,16 +1450,10 @@ def subplot(*args, **kwargs) -> Axes: | ||
Notes | ||
----- | ||
.. versionchanged:: 3.8 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. As noted above, this is under-indented. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. yes, I tried making changes.. I hope the checks passes this time 😭 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. Now you need to click through the CircleCI job. I usually download the raw log and search for "Warning" to see why the doc build failed. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. There is also a section below the failed build output called "Extract possible build errors and warnings". It seems you are trying to link to There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I tried adding 'axes.remove' inother still checks failed, am i suppose to add '.. automethod:: matplotlib.axes.Axes.remove' instead ?? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. @rcomer Thankyou so much for the proper explanation & guidance ..I'll work around it😄 There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. I installed pre-commit hooks & pushed the changes.. you can review it once & ask me for any further changes if required. ContributorAuthor
| ||
In versions prior to 3.8, any preexisting Axes that overlap with the new Axes | ||
beyond sharing a boundary was deleted. Deletion does not happen in more | ||
recent versions anymore. Use `.Axes.remove` explicitly if needed. | ||
If you do not want this behavior, use the `.Figure.add_subplot` method | ||
or the `.pyplot.axes` function instead. | ||
Uh oh!
There was an error while loading.Please reload this page.