我的图表上有太多的刻度,它们相互碰撞。

如何减少蜱虫的数量?

例如,我有蜱:

1E-6, 1E-5, 1E-4, ... 1E6, 1E7

我只想:

1E-5, 1E-3, ... 1E5, 1E7

我尝试过使用LogLocator,但我还没有弄清楚这一点。


当前回答

以防有人还需要,既然什么都没有 这对我很有用,我想出了一个非常 保持外观的简单方法 生成的情节“是”,而固定的数字 精确到N:

import numpy as np
import matplotlib.pyplot as plt

f, ax = plt.subplots()
ax.plot(range(100))

ymin, ymax = ax.get_ylim()
ax.set_yticks(np.round(np.linspace(ymin, ymax, N), 2))

其他回答

对于轴对象,有一个set_ticks()函数。

Xticks函数与range函数自动迭代

Start_number = 0

End_number = len(你拥有的数据)

Step_number =从开始到结束要跳过多少次

旋转= 90度倾斜有助于长滴答

plt.xticks(range(start_number,end_number,step_number),rotation=90)

或者,如果你想简单地设置tick的数量,同时允许matplotlib定位它们(目前仅使用MaxNLocator),有pyplot.locator_params,

pyplot.locator_params(nbins=4)

你可以在这个方法中指定特定的轴,如下所示,默认是:

# To specify the number of ticks on both or any single axes
pyplot.locator_params(axis='y', nbins=6)
pyplot.locator_params(axis='x', nbins=10)

当使用日志尺度时,可以使用以下命令确定主要刻度的数量

import matplotlib.pyplot as plt

....

plt.locator_params(numticks=12)
plt.show()

设置为numticks的值决定要显示的轴刻度数。

感谢@bgamari介绍locator_params()函数的帖子,但是当使用日志尺度时,nticks参数抛出错误。

如果有人仍然在搜索结果中看到这一页:

fig, ax = plt.subplots()

plt.plot(...)

every_nth = 4
for n, label in enumerate(ax.xaxis.get_ticklabels()):
    if n % every_nth != 0:
        label.set_visible(False)