python调整折线图图例位置
时间: 2023-06-07 07:06:49 浏览: 178
python绘制折线图实例
5星 · 资源好评率100%
您可以使用matplotlib库的legend()函数来调整折线图的图例位置,例如:
```python
import matplotlib.pyplot as plt
# 绘制折线图
x = [1, 2, 3, 4, 5]
y = [5, 4, 3, 2, 1]
plt.plot(x, y)
# 设置图例位置
plt.legend(loc='upper right')
# 显示图形
plt.show()
```
这里,`loc='upper right'`表示将图例放置在右上角。您可以选择其他位置,如'upper left','lower right'等。
阅读全文