我有一个半对数图,我想去除xtick。我试着:
plt.gca().set_xticks([])
plt.xticks([])
ax.set_xticks([])
网格消失了(ok),但是小扁虱(在主要扁虱的地方)仍然存在。如何去除?
我有一个半对数图,我想去除xtick。我试着:
plt.gca().set_xticks([])
plt.xticks([])
ax.set_xticks([])
网格消失了(ok),但是小扁虱(在主要扁虱的地方)仍然存在。如何去除?
当前回答
plt。Tick_params方法对于这样的东西非常有用。这段代码关闭大刻度和小刻度,并从x轴上删除标签。
注意这里还有ax。matplotlib.axes.Axes对象的tick_params。
from matplotlib import pyplot as plt
plt.plot(range(10))
plt.tick_params(
axis='x', # changes apply to the x-axis
which='both', # both major and minor ticks are affected
bottom=False, # ticks along the bottom edge are off
top=False, # ticks along the top edge are off
labelbottom=False) # labels along the bottom edge are off
plt.show()
plt.savefig('plot')
plt.clf()
其他回答
不完全是OP要求的,但是一个简单的方法禁用所有轴、线、勾和标签是简单地调用:
plt.axis('off')
plt。Tick_params方法对于这样的东西非常有用。这段代码关闭大刻度和小刻度,并从x轴上删除标签。
注意这里还有ax。matplotlib.axes.Axes对象的tick_params。
from matplotlib import pyplot as plt
plt.plot(range(10))
plt.tick_params(
axis='x', # changes apply to the x-axis
which='both', # both major and minor ticks are affected
bottom=False, # ticks along the bottom edge are off
top=False, # ticks along the top edge are off
labelbottom=False) # labels along the bottom edge are off
plt.show()
plt.savefig('plot')
plt.clf()
以下是我在matplotlib邮件列表中找到的一个替代解决方案:
import matplotlib.pylab as plt
x = range(1000)
ax = plt.axes()
ax.semilogx(x, x)
ax.xaxis.set_ticks_position('none')
这个代码片段可能只有助于删除xtick。
from matplotlib import pyplot as plt
plt.xticks([])
这段代码可能有助于删除xtick和ytick。
from matplotlib import pyplot as plt
plt.xticks([]),plt.yticks([])
或者,您可以传递一个空的标记位置并将其标记为
# for matplotlib.pyplot
# ---------------------
plt.xticks([], [])
# for axis object
# ---------------
# from Anakhand May 5 at 13:08
# for major ticks
ax.set_xticks([])
# for minor ticks
ax.set_xticks([], minor=True)