如何使用python-seaborn保存COMPLETE图?

时间:2017-01-20 12:26:53

标签: python matplotlib seaborn

我用seaborn制作了热图,在ipython笔记本中看起来如下: enter image description here

但是当我尝试通过以下方式保存它时:

fig = plt.get_figure()
fig.savefig('heatmap.png')

只是部分图形被保存,y轴的一些标签丢失了: enter image description here

你能告诉我如何保存整个数字吗?提前谢谢!

1 个答案:

答案 0 :(得分:5)

尝试fig.savefig('heartmap.png',bbox_inches='tight')