gpt4 book ai didi

python - 在 matplotlib 中重叠 y 轴刻度标签和 x 轴刻度标签

转载 作者:IT老高 更新时间:2023-10-28 21:44:52 26 4
gpt4 key购买 nike

如果我使用以下代码使用 matplotlib 创建绘图:

import numpy as np
from matplotlib import pyplot as plt
xx = np.arange(0,5, .5)
yy = np.random.random( len(xx) )
plt.plot(xx,yy)
plt.imshow()

我得到一个看起来像附加图像的结果。问题是最底部的 y 刻度标签与最左侧的 x 刻度标签重叠。这个看起来不专业。我想知道是否有自动删除最底部的 y-tick 标签的方法,所以我没有重叠问题。代码行数越少越好。 enter image description here

最佳答案

在ticker模块中有一个类叫做MaxNLocator这可能需要一个 prune kwarg。
使用它可以删除第一个刻度:

import matplotlib.pyplot as plt
from matplotlib.ticker import MaxNLocator
import numpy as np
xx = np.arange(0,5, .5)
yy = np.random.random( len(xx) )
plt.plot(xx,yy)
plt.gca().xaxis.set_major_locator(MaxNLocator(prune='lower'))
plt.show()

结果:

enter image description here

关于python - 在 matplotlib 中重叠 y 轴刻度标签和 x 轴刻度标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9422587/

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