怎么指定plt.bar(words, freqs)的字体
时间: 2023-06-24 17:04:40 浏览: 67
您可以使用 `fontdict` 参数来指定 `plt.bar()` 函数中的字体。例如,下面的代码将设置 x 轴和 y 轴标签的字体:
```python
import matplotlib.pyplot as plt
plt.bar(words, freqs)
plt.xlabel('Words', fontdict={'fontsize': 14, 'fontweight': 'bold'})
plt.ylabel('Frequencies', fontdict={'fontsize': 14, 'fontweight': 'bold'})
plt.show()
```
在这个例子中,`fontdict` 参数是一个字典,其中包含您想要设置的字体属性,如字体大小和粗细。
阅读全文