plt.legend怎么使用
时间: 2023-11-20 13:56:02 浏览: 528
plt.legend()函数用于为图表添加图例,以便更好地说明图表中的数据。下面是plt.legend()函数的使用方法和示例:
1. 在plt.plot()中添加label参数,然后在plt.legend()中调用即可显示图例。
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [2, 4, 6, 8, 10]
plt.plot(x, y, label='linear')
plt.legend()
plt.show()
```
2. 在plt.legend()中使用handles和labels参数手动指定图例的内容和标签。
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]
y2 = [1, 3, 5, 7, 9]
l1, = plt.plot(x, y1, color='red', label='line 1')
l2, = plt.plot(x, y2, color='blue', label='line 2')
plt.legend(handles=[l1, l2], labels=['red line', 'blue line'], loc='best')
plt.show()
```
3. 在plt.legend()中使用loc参数指定图例的位置。
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y1 = [2, 4, 6, 8, 10]
y2 = [1, 3, 5, 7, 9]
plt.plot(x, y1, color='red', label='line 1')
plt.plot(x, y2, color='blue', label='line 2')
plt.legend(loc=0)
plt.show()
```
阅读全文