I am trying to plot a figure with 8 rows of data. And I use the following line of code.
fig, ax = plt.subplots(9, 1, sharex=True, squeeze=True, figsize=(12, 18))
For this code, I have successfully produce 8 rows of data, with the same x-axis (sharex=True) and the same row heights. However, I want the just the first row of data to be of a different row height only (still same x-axis) and all.
How do I go about doing this?
Thank you fin advance for your kind assistance in helping me.