python matplotlib画图加图例
时间: 2024-04-11 19:25:22 浏览: 131
python-matplotlib绘图示例
Python的Matplotlib库是一个用于绘制各种类型图表的强大工具。在使用Matplotlib绘制图表时,可以通过添加图例来标识不同的数据系列或图表元素。下面是使用Matplotlib画图并添加图例的步骤:
1. 导入Matplotlib库和相关模块:
```python
import matplotlib.pyplot as plt
```
2. 创建图表对象:
```python
fig, ax = plt.subplots()
```
3. 绘制图表:
```python
ax.plot(x, y1, label='数据系列1')
ax.plot(x, y2, label='数据系列2')
```
其中,x是横坐标数据,y1和y2是对应的纵坐标数据。label参数用于指定每个数据系列的标签。
4. 添加图例:
```python
ax.legend()
```
该语句将根据之前设置的label参数自动创建图例,并将其添加到图表中。
5. 显示图表:
```python
plt.show()
```
该语句将显示绘制好的图表。
阅读全文