Closed
Description
Noticed this while reviewing #34343
Currently, the example in the doc would look like this:
IMO there's insufficient separation between the subplots. If we change this line to
fig.subplots_adjust(bottom=0.15, top=0.9, left=0.1, right=0.9, wspace=0.2, hspace=.5)
then this example would look like this
It seems these subplot adjustments aren't adjustable by the user.
So, should the user be allowed to pass in these parameters (e.g. hspace
), or should the fix here be to just hardcode hspace=.5
into the line mentioned above, and if users want extra customisability they can use matplotlib directly?