在创建/初始化 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 workfig.set_figsize((6, 6))
1 回答
慕尼黑的夜晚无繁华
TA贡献1864条经验 获得超6个赞
要使用的命令是 set_size_inches:
fig.set_size_inches((6, 6))
回答我自己的问题(它没有出现在我的搜索中,希望这个线程会)。
添加回答
举报
0/150
提交
取消