python 绘制多折现图 横坐标为123等
时间: 2024-02-03 13:15:14 浏览: 210
你可以使用 Matplotlib 库来绘制多折线图。
以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
# 设置横坐标
x = [1, 2, 3]
# 设置纵坐标
y1 = [2, 4, 1]
y2 = [4, 1, 3]
# 绘制多折线图
plt.plot(x, y1, label='Line 1')
plt.plot(x, y2, label='Line 2')
# 设置标题和标签
plt.title('Multiple Line Chart')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 显示图例
plt.legend()
# 显示图表
plt.show()
```
这个例子将绘制两条折线,横坐标为 1,2,3,纵坐标为 y1 和 y2。你可以根据自己的需求修改代码,绘制你想要的多折线图。
阅读全文