欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

【Python】 plt.savefig保存图片时一片空白

程序员文章站 2022-03-24 15:46:37
...

【Python】解决使用plt.savefig保存图片时一片空白

   plt.cla()
   plt.title('training data set')
   x_axis = range(1, 90, 1)
   plt.plot(x_axis, pred, color='green', label='training predicted value',
            linestyle='--', marker='o')
   plt.plot(x_axis, y, color='red', label='training real value',
            linestyle='-.', marker='>')
   plt.text(60, 2, 'R^2=%.4f' % r2_score(y, pred), fontdict={'size': 20, 'color': 'red'})
   plt.pause(0.1)
   plt.ioff()
   plt.savefig("model data/"+path+"/model_i=" + str(step) + '_j=' + str(j) + '_train1.png', dpi=300)
   plt.savefig("model data/"+path+"/model_i=" + str(step) + '_j=' + str(j) + '_train1.pdf', dpi=300)
   plt.show()

参考:https://blog.csdn.net/moses1994/article/details/77477980
未解决

注释掉 plt.pause(0.1) 就可以了,原因不知道

相关标签: python plt.savefig