python修改复式折线图的图例名称
时间: 2023-10-10 19:14:06 浏览: 147
要修改 Python 中复式折线图的图例名称,可以在 `plt.plot()` 函数中使用 `label` 参数指定每条折线的名称,并在 `plt.legend()` 函数中使用 `labels` 参数指定每个标签的新名称。例如:
```python
import matplotlib.pyplot as plt
# 数据准备
x = [1, 2, 3, 4, 5]
y1 = [1, 2, 3, 4, 5]
y2 = [1, 4, 9, 16, 25]
# 绘制折线图
plt.plot(x, y1, label='Line 1')
plt.plot(x, y2, label='Line 2')
# 修改图例名称
plt.legend(labels=['Line A', 'Line B'])
# 显示图形
plt.show()
```
在上面的例子中,我们首先准备了两组数据 `y1` 和 `y2`,然后在 `plt.plot()` 函数中使用 `label` 参数分别指定了每条折线的名称。最后,在调用 `plt.legend()` 函数时,我们使用 `labels` 参数指定了每个标签的新名称。注意,该参数需要传入一个列表,且列表中元素的顺序要与绘制折线图时 `label` 参数的顺序保持一致。
阅读全文