在 Matplotlib 中显示绘图前获取空的刻度标签
要在 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()
输出
广告