Thanks to visit codestin.com
Credit goes to github.com

Skip to content

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

Merged
merged 5 commits into from
Mar 16, 2017
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Small header comment fixes
  • Loading branch information
dstansby committed Mar 13, 2017
commit 8b5391c219e08e0d359b413aaef2c99a2e6f16ad
12 changes: 6 additions & 6 deletions examples/subplots_axes_and_figures/ganged_plots.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,13 @@
Creating adjacent subplots
==========================

To create plots that share a common axes (visually) you can set the
hspace between the subplots to zero. Passing sharex=True when creating the
subplots will automatically turn off all x ticks and labels except those on the
bottom axis.
To create plots that share a common axis (visually) you can set the hspace
between the subplots to zero. Passing sharex=True when creating the 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
same logic to supply a common y axis.
In this example the plots share a common x axis but you can follow the same
logic to supply a common y axis.
"""
import matplotlib.pyplot as plt
import numpy as np
Expand Down