plt.legend(['correlation', 'RMSE', 'IVS Score'])如何让图例横着摆放
时间: 2023-09-25 20:12:16 浏览: 143
Python matplotlib画图时图例说明(legend)放到图像外侧详解
可以使用`plt.legend()`中的`loc`参数和`bbox_to_anchor`参数来调整图例的位置和方向。具体实现方法如下:
```python
import matplotlib.pyplot as plt
# 假设有3条曲线
x = [1, 2, 3]
y1 = [1, 2, 3]
y2 = [1.5, 2.5, 3.5]
y3 = [2, 3, 4]
# 绘制3条曲线
plt.plot(x, y1)
plt.plot(x, y2)
plt.plot(x, y3)
# 设置图例位置和方向
plt.legend(['correlation', 'RMSE', 'IVS Score'], loc='upper center', bbox_to_anchor=(0.5, -0.1), ncol=3)
# 显示图形
plt.show()
```
其中,`bbox_to_anchor`参数用来设置图例的位置,可以根据需要进行调整。`ncol`参数用来设置图例的列数,这里设置为3,即3条曲线对应3列。通过这两个参数的组合,可以实现横向图例的效果。
阅读全文