plt.xlabel设置字体类型
时间: 2023-08-22 15:20:52 浏览: 161
python 设置xlabel,ylabel 坐标轴字体大小,字体类型
5星 · 资源好评率100%
可以使用以下方式设置字体类型:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
font = FontProperties(fname="your_font_path.ttf", size=12)
# 将 "your_font_path.ttf" 替换为你想要使用的字体文件路径
plt.xlabel("x轴标签", fontproperties=font)
```
其中,FontProperties() 函数可以传入字体文件路径和字号,用于创建字体对象。然后,将该字体对象作为参数传递给 xlabel() 函数,即可设置 x 轴标签的字体类型。
阅读全文