gpt4 book ai didi

python - 如何在 Matplotlib 中交错或偏移 x 轴标签?

转载 作者:行者123 更新时间:2023-11-28 20:58:17 29 4
gpt4 key购买 nike

我想知道是否有一种简单的方法来以类似于所附图像的方式偏移 x 轴标签。

enter image description here

最佳答案

您可以遍历 x 轴刻度并每隔一个刻度增加垫子,使它们低于其他刻度。一个最小的例子是:

import matplotlib.pyplot as plt

fig, ax = plt.subplots()

ax.plot([1,2,3,4,5])

ax.set_xticks([1,2,3,4,5])
ax.set_xticklabels(["A","B","C","D","E",])

# [1::2] means start from the second element in the list and get every other element
for tick in ax.xaxis.get_major_ticks()[1::2]:
tick.set_pad(15)

plt.show()

enter image description here

关于python - 如何在 Matplotlib 中交错或偏移 x 轴标签?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51898101/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com