创建/初始化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))
答案 0 :(得分:0)
要使用的命令是set_size_inches:
fig.set_size_inches((6, 6))
要回答我自己的问题(该问题未出现在我的搜索中,希望该主题会出现)。