改变与小区的数字大小

我在matplotlib网站上遇到了这个例子

http://matplotlib.org/examples/pylab_examples/subplots_demo.html

我想知道是否有可能增加数字的大小。

我试过了

f.figsize(15,15) 

但它什么都不做。

如果你已经有了数字对象使用:

 f.set_figheight(15) f.set_figwidth(15) 

但是,如果您使用.subplots()命令(如您所示的示例中)来创build新graphics,则还可以使用:

 f, axs = plt.subplots(2,2,figsize=(15,15))