gpt4 book ai didi

Matplotlib savefig 不保存轴

转载 作者:行者123 更新时间:2023-12-04 23:52:56 32 4
gpt4 key购买 nike

我正在尝试保存一个在 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")

Savefig image without axes labels

最佳答案

我在使用 Jupyter notebook 和命令时遇到了同样的问题:%matplotlib notebook。该图在笔记本中正确显示,但在使用 fig.savefig() 保存时未打印轴和标题。我将 %matplotlib notebook 更改为 %matplotlib inline 并解决了问题。

关于Matplotlib savefig 不保存轴,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19576317/

32 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com