plt.plot图例怎么放大
时间: 2023-10-15 13:24:47 浏览: 107
matplotlib 曲线图 和 折线图 plt.plot()实例
5星 · 资源好评率100%
要放大 `plt.plot` 的图例,可以使用 `matplotlib.pyplot.legend` 函数中的 `fontsize` 参数来调整字体大小。下面是一个简单的示例:
```python
import matplotlib.pyplot as plt
# 创建示例数据
x = [1, 2, 3, 4]
y = [1, 4, 9, 16]
# 绘制曲线和图例
plt.plot(x, y, label='曲线')
plt.legend(fontsize='large') # 调整图例字体大小为大号
# 显示图形
plt.show()
```
在示例代码中,我们先绘制了一条曲线,并为该曲线添加了一个标签(即图例),然后通过 `plt.legend` 函数来显示图例。`fontsize='large'` 参数将字体大小设置为大号,你可以根据需要调整为其他合适的大小。最后,使用 `plt.show()` 显示图形。
阅读全文