如何在 Matplotlib 中设置次要刻度线的位置?
若要设置 Matplotlib 中次要刻度线的位置,我们可以采取以下步骤 −
- 设置图形大小并调整子图之间的间距以及周围的间距。
- 使用 numpy 创建 x 和 y 数据点。
- 创建一个图形和一组子图。
- 使用 plot() 方法绘出 x 和 y 数据点。
- 若要查找次要刻度线,请使用 set_minor_locator() 方法。
- 若要显示次要刻度线,请使用 grid(which='minor')。
- 若要显示图形,请使用 show() 方法。
示例
import matplotlib.pyplot as plt import numpy as np from matplotlib.ticker import AutoMinorLocator plt.rcParams["figure.figsize"] = [7.50, 3.50] plt.rcParams["figure.autolayout"] = True x = np.linspace(1, 10, 100) y = np.log(x) fig, ax = plt.subplots() ax.plot(x, y) minor_locator = AutoMinorLocator(2) ax.xaxis.set_minor_locator(minor_locator) plt.grid(which='minor') plt.show()
输出
广告