matplotlib删除x轴

本文介绍了一种在使用Matplotlib绘图时隐藏X轴的方法。通过设置plt.tick_params函数中的参数,可以实现X轴刻度及标签的隐藏。此技巧适用于希望简化图表展示场景。

组内有个同事,有个奇怪的需求需要matplotlib删除x轴

效果图如下:

关键代码:

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='off',      # ticks along the bottom edge are off
    top='off',         # ticks along the top edge are off
    labelbottom='off') # labels along the bottom edge are off
plt.show()
plt.savefig('plot')
plt.clf()

 参考资料:

http://stackoverflow.com/questions/12998430/remove-xticks-in-a-matplot-lib-plot

 

转载于:https://www.cnblogs.com/gsblog/p/3793379.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值