python画图横纵坐标字体
时间: 2023-08-13 22:08:51 浏览: 247
要在 Python 中设置图形的横纵坐标字体,可以使用 Matplotlib 库中的 `FontProperties` 类来指定字体。
以下是在 Python 绘图时设置横纵坐标字体的示例代码:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
# 设置字体为宋体
font = FontProperties(fname="/path/to/font.ttf", size=12)
# 绘制图形
plt.plot([1, 2, 3, 4], [10, 20, 30, 40])
# 设置横纵坐标字体
plt.xlabel("横轴", fontproperties=font)
plt.ylabel("纵轴", fontproperties=font)
# 显示图形
plt.show()
```
在这个示例中,我们首先导入了 `matplotlib.pyplot` 模块,并从 `matplotlib.font_manager` 模块导入了 `FontProperties` 类。然后,我们创建了一个名为 `font` 的字体对象,指定为系统中的某个字体文件路径(例如宋体)。接下来,在绘制图形时,我们使用 `fontproperties` 参数将字体应用于横纵坐标。
请确保将示例代码中的 `/path/to/font.ttf` 替换为你实际的字体文件路径,以及调整字体名称和大小以满足你的需求。
通过这种方式,你可以设置 Python 绘图中横纵坐标的字体。
阅读全文