matplotlib中使用subplots创建窗口如何设置尺寸大小

在matplotlib一般使用plt.figure来设置窗口尺寸。

plt.figure(figsize=(10, 10)) 

但是如果使用plt.subplots,那么这种方法就无效,只能通过subplots自己设置窗口大小。

fig, ax1 = plt.subplots(figsize=(10, 10))

你可能感兴趣的:(工具)