gpt4 book ai didi

python - Matplotlib x 轴重叠

转载 作者:太空宇宙 更新时间:2023-11-04 09:45:22 25 4
gpt4 key购买 nike

我有两个列表,x_axis 是格式为“12:30:00”的时间列表。 y 轴是百分比值。我需要在图表上绘制所有值,但是由于 x 轴字符串太长,它们会重叠。无论如何我可以让 matplotlib 不在 x 轴上每次都显示吗?任何帮助,将不胜感激。 enter image description here

enter image description here

最佳答案

您可以旋转并打印每第二个刻度标签:

_ = plt.plot(df['str_time'], df.Pct, 'ro')
ax = plt.gca()
plt.axis([0,24,0,50])
plt.xticks(rotation=90)
for label in ax.get_xaxis().get_ticklabels()[::2]:
label.set_visible(False)

输出:

enter image description here

关于python - Matplotlib x 轴重叠,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50033189/

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