I came across this example in the Matplotlib website. I was wondering if it was possible to increase the figure size.
I tried with
f.figsize(15,15)
but it does nothing.
plot(rand(10),rand(10),'-');
We can use the plt. subplots_adjust() method to change the space between Matplotlib subplots. The parameters wspace and hspace specify the space reserved between Matplotlib subplots. They are the fractions of axis width and height, respectively.
If you already have the figure object use:
f.set_figheight(15) f.set_figwidth(15)
But if you use the .subplots() command (as in the examples you're showing) to create a new figure you can also use:
f, axs = plt.subplots(2,2,figsize=(15,15))
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With