python plot legend怎么用
时间: 2023-09-12 09:13:18 浏览: 60
关于python 的legend图例,参数使用说明
在 matplotlib 中,我们可以使用 `legend()` 函数来添加图例。以下是一个简单的例子:
```python
import matplotlib.pyplot as plt
# 画出两条线
x = [1, 2, 3, 4, 5]
y1 = [1, 4, 9, 16, 25]
y2 = [1, 2, 4, 8, 16]
plt.plot(x, y1, label='y1')
plt.plot(x, y2, label='y2')
# 添加图例
plt.legend()
# 显示图形
plt.show()
```
在这个例子中,我们画出了两条线,每条线都有一个标签,分别是 `y1` 和 `y2`。我们可以在 `legend()` 函数中添加一个参数来指定图例的位置,例如 `plt.legend(loc='upper right')` 表示将图例放在右上角。更多的位置参数可以参考官方文档。
阅读全文