Hide axis values but keep axis tick labels in matplotlib

前端 未结 6 1311
星月不相逢
星月不相逢 2021-01-30 06:13

I have this image:

plt.plot(sim_1[\'t\'],sim_1[\'V\'],\'k\')
plt.ylabel(\'V\')
plt.xlabel(\'t\')
plt.show()

I want to hide the numbers

6条回答
  •  说谎
    说谎 (楼主)
    2021-01-30 06:28

    This works great. Just paste this before plt.show():

    plt.gca().axes.get_yaxis().set_visible(False)
    

    Boom.

提交回复
热议问题