Related to: plotting autoscaled subplots with fixed limits in matplotlib
I would like to make a set of subplots that are all on the same scale, using the subplots
new compact style, as in http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.subplots and have them be square.
I tried:
fig, axes = subplots(numplots, 1, sharex=True, sharey=True, adjustable='box', aspect='equal')
But I found that these keyword arguments are not implemented in the subplots
wrapper. What's the way to do it?
To reiterate, the goal is simply to have shared axes, so that all the data are on the same scale, and have the plots be square.