在python如何对图例加边框并设置其位置和字号
时间: 2023-04-07 20:00:39 浏览: 113
在Python 中实现图片加框和加字的方法
5星 · 资源好评率100%
可以使用matplotlib库中的legend函数来对图例进行设置。具体步骤如下:
1. 导入matplotlib库
```python
import matplotlib.pyplot as plt
```
2. 创建图形对象
```python
fig, ax = plt.subplots()
```
3. 绘制图形
```python
ax.plot(x, y, label='line')
```
4. 添加图例
```python
legend = ax.legend(loc='upper right', fontsize='large', frameon=True)
```
其中,loc参数用于设置图例的位置,可以选择'upper right'、'upper left'、'lower right'、'lower left'等;fontsize参数用于设置字号大小;frameon参数用于设置是否显示边框,可以选择True或False。
如果需要对边框进行更细致的设置,可以使用legend对象的set_frame_properties方法,例如:
```python
legend.set_frame_properties(linewidth=2, edgecolor='r')
```
这样就可以对图例的边框进行设置了。
阅读全文