优艾设计网

如何自动保存matplotlib生成的图片?

优艾设计网 https://www.uibq.com 2023-06-07 07:18 出处:网络 作者:在线设计
import matplotlib.pyplot as plt import math x_list = range(1,20) y_list = range(1,20)# draw plt.figure(figsize=(13, 7)) plt.优艾设计网_设计百科plot(x_list, y_list, color=\"red\", linewidth=3) plt.xlab

import matplotlib.pyplot as plt import math x_list = range(1,20) y_list = range(1,20)# draw plt.figure(figsize=(13, 7)) plt.优艾设计网_设计百科plot(x_list, y_list, color="red", linewidth=3) plt.xlabel("") plt.ylabel("R") plt.title(u"x x") plt.legend((u"图例",))plt.ylim(0, 30) plt.legend() plt.show()


0

精彩评论

暂无评论...
验证码 换一张
取 消