在 Matplotlib 中显示绘图之前获取空刻度标签
matplotlibpythondata visualization
要在 matplotlib 中显示绘图之前获取空刻度标签,我们可以采取以下步骤 −
创建数据点列表。
使用 subplot() 方法向当前图形添加子图。
使用 set_xticks() 方法和 set_xticklabels() 方法设置 刻度 和 刻度标签。
要获取空刻度标签,请使用 get_xticklabels(which='minor')。
要显示该方法,请使用 show() 方法。
示例
from matplotlib import pyplot as plt plt.rcParams["figure.figsize"] = [7.00, 3.50] plt.rcParams["figure.autolayout"] = True x = [1, 2, 3, 4] ax1 = plt.subplot() ax1.set_xticks(x) ax1.set_xticklabels(["one", "two", "three", "four"]) print("Empty tick labels: ", ax1.get_xticklabels(which='minor')) plt.show()