我正在尝试保存一个在 IPython 内联中可以正常工作的图形,但没有将图形保存到包含轴和标题的磁盘中。
我在 matplotlibrc 中默认使用 TKAgg 后端
任何想法这里可能出了什么问题?我已经清楚地设置了 xlabel 和刻度线在 IPython 内联图中正常工作。
import matplotlib.pylab as plt
x = [1,2,3,3]
y = map(lambda(x): x * 2, x)
fig = plt.figure()
ax = fig.add_axes([0,0,1,1])
ax.set_title("bleh")
ax.set_xlabel("xlabel")
ax.plot(x, y, 'r--')
fig.savefig("fig.png")