-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
MEP12 ganged example #8229
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
MEP12 ganged example #8229
Conversation
========================== | ||
|
||
To create plots that share a common axes (visually) you can set the | ||
hspace between the subplots close to zero (do not use zero itself). Passing |
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.
Using zero seems to work, perhaps it was an old limitation. Please check, and remove this note and use 0 below instead of 0.001, if you agree.
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.
LGTM 👍
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.
More spelling/idomatic English.
sharex=True when creating the subplots will automatically turn of all x ticks | ||
and labels apart from on the bottom axis. | ||
hspace between the subplots to zero. Passing sharex=True when creating the | ||
subplots will automatically turn of all x ticks and labels apart from on the |
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.
turn off (two f's)
apart from -> except(?)
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.
more minor stuff...
Creating adjacent subplots | ||
========================== | ||
|
||
To create plots that share a common axes (visually) you can set the |
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.
a common axis (singular) (?)
subplots will automatically turn off all x ticks and labels except those on the | ||
bottom axis. | ||
|
||
In this example the plots share a common xaxis but you can follow the |
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.
x axis (with a space) (or at least be consistent just below when you write y axis)
@anntzer do you mind having a look at this PR again? |
Thanks! |
Documentation! (+ everyone ❤️
plt.subplots()
)