Python中legend
时间: 2023-08-27 09:08:20 浏览: 102
关于python 的legend图例,参数使用说明
在Python中,`legend`是matplotlib库中的一个函数,用于显示图表中的图例。图例通常用于标识不同的数据系列或者不同的线条、颜色等,方便用户理解图表中的数据。
`legend`函数可以通过传递一些参数来控制图例的位置、字体、大小等属性。例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4]
y1 = [1, 4, 9, 16]
y2 = [2, 4, 6, 8]
plt.plot(x, y1, label='y1')
plt.plot(x, y2, label='y2')
plt.legend(loc='upper right', fontsize='small')
plt.show()
```
在这个例子中,我们首先通过 `plot` 函数绘制了两条曲线,并分别指定了它们的标签。然后,通过 `legend` 函数将这些标签显示在图表中,并设置了图例的位置为右上角,字体大小为小号。最后,使用 `show` 函数显示图表。
阅读全文