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

【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)