python折线图三支线
时间: 2023-07-18 21:34:11 浏览: 122
好的,下面是 Python 中使用 Matplotlib 绘制三条折线图的示例代码:
```python
import matplotlib.pyplot as plt
# 数据
x = [1, 2, 3, 4, 5]
y1 = [10, 8, 6, 4, 2]
y2 = [9, 7, 5, 3, 1]
y3 = [8, 6, 4, 2, 0]
# 绘制折线图
plt.plot(x, y1, label='Line 1')
plt.plot(x, y2, label='Line 2')
plt.plot(x, y3, label='Line 3')
# 设置标题、坐标轴标签和图例
plt.title('Three Lines Plot')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
plt.legend()
# 显示图形
plt.show()
```
在上面的代码中,我们使用了 Matplotlib 库来绘制三条折线图。首先,我们定义了 x 和 y1、y2、y3 三个列表来存储数据。然后,使用 `plt.plot()` 函数分别绘制了三条折线图,每条折线图都有一个 label 属性,用于在图例中显示折线的标签。接着,我们使用 `plt.title()`、`plt.xlabel()` 和 `plt.ylabel()` 函数来设置标题和坐标轴标签。最后,使用 `plt.legend()` 函数来显示图例,并使用 `plt.show()` 函数显示图形。
阅读全文