plt.figure(figsize=(15,15)) ax1=plt.subplot(3,1,1) ax1.set_title("原数据",fontproperties=font) ax1.spines["top"].set_linewidth(2) ax1.spines["right"].set_linewidth(2) ax1.spines["bottom"].set_linewidth(2) ax1.spines["left"].set_linewidth(2) plt.plot(day_ground['PM10'][:"2020-04-30"], color="c") ax2=plt.subplot(3,1,2) ax2.set_title("填充插值",fontproperties=font) plt.plot(day_ground["PM10"][:"2020-04-30"].interpolate(method='pad', limit=2),color="r") ax3=plt.subplot(3,1,3) ax3.set_title("线性插值",fontproperties=font) plt.plot(day_ground["PM10"][:"2020-04-30"].interpolate(method='linear', limit=2),color="b") plt.savefig("插值1.png", dpi=150)在python中调整每一幅图刻度值的字体
时间: 2023-11-09 21:05:46 浏览: 110
要在 Python 中调整每一幅图的刻度值字体,你可以使用 `tick_params()` 方法来设置刻度值的字体和大小。
以下是在 Python 中调整每一幅图的刻度值字体的示例代码:
```python
import matplotlib.pyplot as plt
from matplotlib.font_manager import FontProperties
# 设置字体为宋体
font = FontProperties(fname="/path/to/font.ttf", size=12)
# 绘制图形
plt.figure(figsize=(15, 15))
ax1 = plt.subplot(3, 1, 1)
ax1.set_title("原数据", fontproperties=font)
ax1.spines["top"].set_linewidth(2)
ax1.spines["right"].set_linewidth(2)
ax1.spines["bottom"].set_linewidth(2)
ax1.spines["left"].set_linewidth(2)
plt.plot(day_ground['PM10'][: "2020-04-30"], color="c")
ax1.tick_params(axis='both', labelsize=12, fontproperties=font)
ax2 = plt.subplot(3, 1, 2)
ax2.set_title("填充插值", fontproperties=font)
plt.plot(day_ground["PM10"][: "2020-04-30"].interpolate(method='pad', limit=2), color="r")
ax2.tick_params(axis='both', labelsize=12, fontproperties=font)
ax3 = plt.subplot(3, 1, 3)
ax3.set_title("线性插值", fontproperties=font)
plt.plot(day_ground["PM10"][: "2020-04-30"].interpolate(method='linear', limit=2), color="b")
ax3.tick_params(axis='both', labelsize=12, fontproperties=font)
plt.savefig("插值1.png", dpi=150)
```
在这个示例中,我们首先导入了 `matplotlib.pyplot` 模块,并从 `matplotlib.font_manager` 模块导入了 `FontProperties` 类。然后,我们创建了一个名为 `font` 的字体对象,指定为系统中的某个字体文件路径(例如宋体)。接下来,我们使用 `plt.figure()` 方法创建了一个图形,并设置了图形的大小。
在绘制每一幅图时,我们使用 `ax.tick_params()` 方法设置横纵坐标轴刻度值的字体和大小,并通过 `fontproperties` 参数将字体应用于刻度值。
请确保将示例代码中的 `/path/to/font.ttf` 替换为你实际的字体文件路径,以及调整字体名称和大小以满足你的需求。
通过这种方式,你可以在 Python 中调整每一幅图的刻度值字体。
阅读全文