I have a matplotlib plot in python with 3 subplots, all in 1 column.
I currently control the height of each subplot with:
gridspec.GridSpec(3, 1, height_ratios=[1, 3, 3])
I have no spacing via:
plt.subplots_adjust(hspace=0.0)
But I would like to put some spacing between row 2 and 3 only.
In one of the other answers, I read that I can do something like:
gs1.update(left=0.05, right=0.48, wspace=0)
But I don't really understand what is happening. Could someone give me some more information please?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…