plt设置坐标轴的刻度间隔

  代码如下:

x = MultipleLocator(10)    # x轴每10一个刻度
y = MultipleLocator(15)    # y轴每15一个刻度
# 设置刻度间隔
ax = plt.gca()
ax.xaxis.set_major_locator(x)
ax.yaxis.set_major_locator(y)

你可能感兴趣的:(Python,matplotlib,xaxis,yaxis)