本文介绍了Python隐藏壁虱但显示壁虱标签的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我可以用

ax.set_xticks([]) 
ax.set_yticks([]) 

但这也会删除标签.我可以用任何方式绘制刻度标签,但不能绘制刻度和书脊

but this removes the labels as well. Any way I can plot the tick labels but not the ticks and the spine

推荐答案

您可以使用 tick_params ( http://matplotlib.org/api/axes_api.html#matplotlib.axes.Axes.tick_params ):

fig = plt.figure()
ax = fig.add_subplot(111)
ax.plot([1],[1])
ax.tick_params(axis=u'both', which=u'both',length=0)
plt.show()

这篇关于Python隐藏壁虱但显示壁虱标签的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-28 23:49