matplotlib设置legend字体
时间: 2023-03-29 17:01:27 浏览: 966
matplotlib图例legend语法及设置的方法
可以使用以下代码设置legend字体:
```
import matplotlib.pyplot as plt
plt.rcParams['legend.fontsize'] = 12
plt.rcParams['legend.fontfamily'] = 'Times New Roman'
```
其中,`legend.fontsize`可以设置字体大小,`legend.fontfamily`可以设置字体类型。
阅读全文