我正在使用python和matplotlib创建棋盘游戏。这是我第一次使用matplotlib,我从谷歌学到了这一点。
我想知道是否有办法沿轴移除这些小黑线(用红色框突出显示)。 Click Here
我使用以下方法添加了网格线:
plt.grid(True)
我使用以下方法隐藏了轴:
frame1 = plt.gca()
frame1.axes.xaxis.set_ticklabels([])
frame1.axes.yaxis.set_ticklabels([])
任何帮助都会很精彩。如果您需要更多信息,请回复此信息
亲切的问候。
答案 0 :(得分:0)
似乎最普遍接受的答案是使用tick_params()
方法
plt.tick_params(
axis='both', # changes apply to the x-axis
which='both', # both major and minor ticks are affected
left='off', # ticks along the left edge are off
right='off', # ticks along the right edge are off
bottom='off', # ticks along the bottom edge are off
top='off') # ticks along the top edge are off