I have created a 4 rows x 2 columns plot in python. The height space hspace reduces the vertical spacing between subplots which is fine but when I reduce the wspace thinking it is the horizontal space , it simply doesn't work. The tight layout is also not working.
This figure is 30x30 in size
fig, (ax1, ax2, ax3, ax4) = plt.subplots(4,2,figsize=(30,30))
fig.tight_layout()
The Space is orange is what I want to reduce or remove
Please help :)