在 Jupyter Notebook 中如何只保存图片但不显示
2020-03-06 本文已影响0人
寂风如雪
网上搜了下不是很容易找到,最后在 Stack Overflow 找到了解决方案,这里记录一下,也方便别人查找。
plt.plot(x, y)
plt.savefig('filename.png')
plt.close() #prevent ouput inline
网上搜了下不是很容易找到,最后在 Stack Overflow 找到了解决方案,这里记录一下,也方便别人查找。
plt.plot(x, y)
plt.savefig('filename.png')
plt.close() #prevent ouput inline