If I have, for example, these 3 datasets to plot:
a = np.arange(0,10,1)
b = np.arange(2,6,1)
c = np.arange(5,10,1)
and obviously, I don't want them to share the same axis, because some of them would basically just have a big empty graph with a few datapoints somewhere in the corner. So I would ideally have subplots of different sizes, but all with the same scale (i.e. that the step 1 has the same length on all subplots). I know I could do this manually by setting the size of the figure, but for a larger number of datasets or not so nice numbers it would be a real pain. But searching through other questions or the documentation, I couldn't find anything that would, for example, set the fixed distance of ticks on axis or something. Please note that I am not asking about the aspect ratio. The aspect ratio can be different, I just need the same scale on an axis. (See the image below, which hopefully illustrates my problem. Note: no I don't need the scale bar in my actual plot, this is here for you to see how the scale is the same.) Thanks.




