plot如何画多条曲线
时间: 2024-06-10 21:04:18 浏览: 76
python matlibplot绘制多条曲线图
要画多条曲线,可以使用 Matplotlib 库中的 plot 函数。代码示例如下:
``` python
import matplotlib.pyplot as plt
# 创建 x 值
x = [1, 2, 3, 4, 5]
# 创建 y 值
y1 = [1, 3, 5, 7, 9]
y2 = [2, 4, 6, 8, 10]
# 画图
plt.plot(x, y1, label='y1')
plt.plot(x, y2, label='y2')
# 添加标题和标签
plt.title('Multiple Curves')
plt.xlabel('X-axis')
plt.ylabel('Y-axis')
# 显示图例
plt.legend()
# 显示图像
plt.show()
```
解释一下代码:
首先导入 Matplotlib 库,然后创建 x 和 y1、y2 值。接着使用 plot 函数来画出两条曲线,并给每条曲线添加一个标签。然后添加标题和标签,并显示图例。最后使用 show 函数显示图像。这段代码可以画出两条曲线,横轴是 x 值,纵轴是 y 值,两条曲线分别用不同的颜色表示,图像中还有标签和图例。
阅读全文