组内有个同事,有个奇怪的需求需要matplotlib删除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

 

相关文章:

  • 2022-01-17
  • 2021-09-10
  • 2021-06-13
  • 2021-05-31
  • 2021-09-24
  • 2021-11-11
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-04-27
  • 2021-11-03
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-01-21
相关资源
相似解决方案