Matplotlib/Pyplot: How to zoom subplots together?

ZoomingMatplotlib

Zooming Problem Overview


I have plots of 3-axis accelerometer time-series data (t,x,y,z) in separate subplots I'd like to zoom together. That is, when I use the "Zoom to Rectangle" tool on one plot, when I release the mouse all 3 plots zoom together.

Previously, I simply plotted all 3 axes on a single plot using different colors. But this is useful only with small amounts of data: I have over 2 million data points, so the last axis plotted obscures the other two. Hence the need for separate subplots.

I know I can capture matplotlib/pyplot mouse events (http://matplotlib.sourceforge.net/users/event_handling.html), and I know I can catch other events (http://matplotlib.sourceforge.net/api/backend_bases_api.html#matplotlib.backend_bases.ResizeEvent), but I don't know how to tell what zoom has been requested on any one subplot, and how to replicate it on the other two subplots.

I suspect I have the all the pieces, and need only that one last precious clue...

-BobC

Zooming Solutions


Solution 1 - Zooming

The easiest way to do this is by using the sharex and/or sharey keywords when creating the axes:

from matplotlib import pyplot as plt

ax1 = plt.subplot(2,1,1)
ax1.plot(...)
ax2 = plt.subplot(2,1,2, sharex=ax1)
ax2.plot(...)

Solution 2 - Zooming

You can also do this with plt.subplots, if that's your style.

fig, ax = plt.subplots(3, 1, sharex=True, sharey=True)

Solution 3 - Zooming

Interactively this works on separate axes

for ax in fig.axes:
    ax.set_xlim(0, 50)
fig.draw()

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionBobCView Question on Stackoverflow
Solution 1 - ZoomingRayView Answer on Stackoverflow
Solution 2 - ZoomingJeremy McGibbonView Answer on Stackoverflow
Solution 3 - Zoomingn1nj4View Answer on Stackoverflow