初始化后调整matplotlib图的大小

时间:2019-02-14 18:47:26

标签: python python-3.x matplotlib

创建/初始化matplotlib图形后,如何调整其大小?

fig, ax = plt.subplots(figsize=(4, 3))
pd.Series([1, 2, 3]).plot(ax=ax)    
# which command to use to? below obviously does not work
fig.set_figsize((6, 6))

1 个答案:

答案 0 :(得分:0)

要使用的命令是set_size_inches:

fig.set_size_inches((6, 6))

要回答我自己的问题(该问题未出现在我的搜索中,希望该主题会出现)。