import numpy as np
import 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-绘制折线图
热度:74 发布时间:2023-12-14 08:37:44.0
相关解决方案
- 急提示JpGraph Error A plot has an illegal scale. 。解决思路
- 使用 matplotlib python 绘制 2 个不同的曲面图
- matplotlib-如何将y轴比例调整为更合适的值?
- python matplotlib.pyplot语法错误
- 在图例,matplotlib,Python中使用代理艺术家
- 导入 matplotlib._png 失败
- 如何更新动画 matplotlib 图中的刻度标签
- matplotlib:如何将Arial-font用于图例和LaTeX-mathfont用于xlabel和ylabel
- 如何在 Colab 中显示 matplotlib 动画而不显示情节?
- 4.Matplotlib
- 《青春有你2》参赛选手数据分析【python,pandas,matplotlib】
- plot()两种风速与温度绘图方法
- matplotlib 数据分析 图示
- 使用python的seaborn、matplotlib、pyecharts绘制各种图形
- Python--Matplotlib(基本用法)
- Matplotlib 06-场景案例显神通
- Matplotlib 05-样式色彩秀芳华
- Matplotlib 04-文字图例尽眉目
- Matplotlib 03-布局格式定方圆
- Matplotlib 02-艺术画笔见乾坤
- Matplotlib 01-图形画布初相识
- matplotlib 参数
- UserWarning: Matplotlib is currently using agg, which is a non-GUI backend
- 【详解】机器学习库-Matplotlib+Numpy+Pandas
- Python数据分析(一)matplotlib
- python 读取显示保存图片,在图片上添加 矩形框 文字。三种方案:matplotlib.pyplot、cv2、PIL-Image
- matplotlib 绘制三维散点图
- Matplotlib 之绘制带误差棒的双柱状图
- %matplotlib inline
- Error: No module named matplotlib.pyplot安装模块