matplotlib画图设置图例大小
时间: 2023-09-24 14:02:39 浏览: 150
matlab 读取mat类型文件plot,可设置横纵坐标、图例及其字体字号大小,图窗位置及大小.zip
要设置 matplotlib 图例(legend)的大小,可以使用 legend() 函数的 fontsize 参数。例如:
```python
import matplotlib.pyplot as plt
x = [1, 2, 3, 4, 5]
y = [10, 8, 6, 4, 2]
plt.plot(x, y, label='data')
plt.legend(fontsize=16) # 设置图例字体大小为 16
plt.show()
```
在上面的例子中,legend() 函数的 fontsize 参数设置为 16,这将使图例中的字体变大。你可以根据需要调整字体大小。
阅读全文