我试图保存一个在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")
6条答案
按热度按时间gopyfrb31#
在开始时定义
fig = plt.figure(figsize=(15,10))
,将文件保存为.jpg并设置bbox_inches='tight'
-plt.savefig('filename.jpg',bbox_inches='tight', dpi=150)
为我解决了这个问题。bbox_inches='tight'
似乎修复了裁剪问题,但它不适用于. png。x0fgdtte2#
可能是facecolor,我在jupyter实验室工作,facecolor默认设置为黑色,所以你看不到轴,即使它们正在绘制。
将背景色设置为白色。
fcipmucu3#
您正在将轴设置为从图的左下方开始,并填满整个图。没有空间放置轴标签或标题。尝试以下操作:
5m1hhzi44#
我在使用xmlyter notebook和命令:%matplotlib notebook时遇到了同样的问题。该图在notebook中正确显示,但在使用fig.savefig()保存时无法打印轴和标题。我将%matplotlib notebook改为%matplotlib inline,这解决了问题。
x6h2sr285#
我能够解决这个问题(在visual studio代码jupyter扩展中),方法是将格式从“png”改为“jpg”,沿着参数“plt.subplots(tight_layout=True plots”。
wbgh16ku6#
我使用的是Yutter Notebook,只需将.png更改为.jpg,我的问题就解决了。
Saved Image from the Code