如何调整字符串 X 轴的 Matplotlib 中的“刻度频率”?
要调整 X 轴的刻度频率,我们可以采取以下步骤 -
- 设置图形大小并调整子图之间的和附近的填充。
- 初始化变量 N,用于样本数据点的数量。
- 使用 numpy 创建 x 和 y 数据点。
- 使用 plot() 方法绘制 x 和 y 数据点。
- 初始化变量 freq_x 以调整 X 轴刻度的频率。
- 使用 xticks() 方法设置 X 轴刻度。
- 要显示图形,请使用 show() 方法。
示例
import matplotlib.pyplot as plt import numpy as np plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True N = 10 x = np.random.randint(low=0, high=N, size=N) y = np.random.randint(low=0, high=N, size=N) plt.plot(x, y, color='red') freq_x = 3 plt.xticks(np.arange(0, N, freq_x)) plt.show()
输出
广告