失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > matplotlib-plot-绘制折线图

matplotlib-plot-绘制折线图

时间:2021-02-07 18:21:24

相关推荐

matplotlib-plot-绘制折线图

import numpy as npimport matplotlib.pyplot as plty1 = [2.3, 3.6, 3.4, 4.6, 5.9, 6.6, 6.9]y2 = [2 , 2.8, 2.1, 4.1, 4.5, 5.9, 6]x = ["a","b","c","d","e","f","g"]"""绘制折线图方法plot参数一:y轴参数二:x轴"""# plt.plot(x, y,color='red')plt.plot(x, y1, label="line L", alpha=0.8)plt.plot(x, y2, label="line H", alpha=0.8)plt.ylim(0,9)plt.xlabel("x axis")plt.ylabel("y axis")plt.title("Line Graph Example")for x, y1 in enumerate(y1):plt.text(x, y1, y1)for x, y2 in enumerate(y2):plt.text(x, y2, y2)plt.legend() plt.show()

如果觉得《matplotlib-plot-绘制折线图》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。