python调整图例title大小
时间: 2023-07-03 11:30:57 浏览: 81
python设置图片尺寸
5星 · 资源好评率100%
您可以使用 `fontsize` 参数来调整图例标题的大小,示例如下:
```python
import matplotlib.pyplot as plt
# 创建图形和子图
fig, ax = plt.subplots()
# 绘制图形
ax.plot([1, 2, 3], [4, 5, 6], label='Line 1')
ax.plot([1, 2, 3], [2, 4, 8], label='Line 2')
# 添加图例并调整标题大小
legend = ax.legend(fontsize='large')
# 显示图形
plt.show()
```
在上面的示例中,`fontsize` 参数被设置为 `'large'`,您可以根据需要将其设置为其他值,例如 `'small'`、`'x-large'` 等。
阅读全文