删除matplotlib图中的xticks?

删除matplotlib图中的xticks?,第1张

删除matplotlib图中的xticks?

tick_params
方法对于这样的事情非常有用。此代码关闭主要和次要刻度线,并从x轴删除标签。

from matplotlib import pyplot as pltplt.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 offplt.show()plt.savefig('plot')plt.clf()



欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5035035.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-15
下一篇 2022-11-15

发表评论

登录后才能评论

评论列表(0条)

保存