matplotlib绘制设置折线图图例
时间: 2023-09-04 18:12:47 浏览: 107
python使用matplotlib绘制折线图的示例代码
要在 matplotlib 中绘制一个带有图例的折线图,可以按照以下步骤进行操作:
1. 导入 matplotlib 和 numpy 模块:
```python
import matplotlib.pyplot as plt
import numpy as np
```
2. 创建一个数据集,包含 x 坐标和 y 坐标:
```python
x = np.arange(0, 10, 0.1)
y = np.sin(x)
```
3. 绘制折线图:
```python
plt.plot(x, y, label='sin(x)')
```
4. 添加图例:
```python
plt.legend()
```
在这个例子中,我们使用 `label` 参数为折线图指定了一个标签,然后使用 `legend` 函数添加了一个图例。如果在 `legend` 函数中没有指定参数,它会自动使用 `plot` 函数中指定的标签。
完整代码示例:
```python
import matplotlib.pyplot as plt
import numpy as np
x = np.arange(0, 10, 0.1)
y = np.sin(x)
plt.plot(x, y, label='sin(x)')
plt.legend()
plt.show()
```
阅读全文