Skip to content
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

DOC: Correct subplot() doc #7760

Merged
merged 3 commits into from Jan 10, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions lib/matplotlib/pyplot.py
Expand Up @@ -976,8 +976,8 @@ def subplot(*args, **kwargs):

.. note::

Creating a new subplot with a position which is entirely inside a
pre-existing axes will trigger the larger axes to be deleted::
Creating a subplot will delete any pre-existing subplot that overlaps
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Overlaps or fully overlaps?

with it::

import matplotlib.pyplot as plt
# plot a line, implicitly creating a subplot(111)
Expand Down