各位大咖,谁对 matplotlib 比较熟悉呀?遇到一个问题,
在 spyder 的 IDE 下执行时,图形显示正常,但是执行 fig.save 后,保存的图片就少了一半,这是咋回事?
在 Spyder 下默认运行:
执行个 fig.show()
1
sivacohan 2017-01-05 09:46:07 +08:00 via Android
你是不是没设置图片摆放顺序啊
就 demo 里面最开始设置的的 211 111 什么的 |
2
kingmo888 OP @sivacohan 我没有设置呀。没有使用 fig.add_subplot ,而是用的:
ax1 = fig.add_axes([0, 1, 1, 1]) ax2 = fig.add_axes([0, 0.35, 1, 0.5], axis_bgcolor='w') |
3
ArcherFeel 2017-01-05 10:21:50 +08:00
没太看懂题目说什么, 不过两个图得用 subplot
|
4
kingmo888 OP |
5
luobuda 2017-01-05 20:45:41 +08:00
bbox_inches 看看有没有这个属性
|