如何在 matplotlib 作图时更改 x 刻度标记的字体大小?


若要更改 matplotlib 图表xticks 的字体大小,我们可以使用fontsize 参数。

步骤

  • 导入 matplotlibnumpy

  • 设置图形大小并调整子图之间的边距和周围的边距。

  • 使用 numpy 创建 **x** 和 **y** 数据点。

  • 使用 plot() 方法绘制 xy 数据点。

  • 使用 xticks() 方法设置 xticks 的字体大小。

  • 若要显示图形,请使用 show() 方法。

示例

from matplotlib import pyplot as plt
import numpy as np

# Set the figure size
plt.rcParams["figure.figsize"] = [7.50, 3.50]
plt.rcParams["figure.autolayout"] = True

# x and y data points
x = np.linspace(-5, 5, 100)
y = np.sin(x)

plt.plot(x, y)

# Set the font size of xticks
plt.xticks(fontsize=25)

# Display the plot
plt.show()

输出

将生成以下输出 -

更新于: 08-9 月-2023

41K+ 查看

开启你的 职业生涯

完成课程获得认证

开始使用
广告