我已经看到很多解决方案,其中刻度标记位于特定位置:我希望刻度线自动间隔,但我只想要其中的十个。我还没有看到任何设置确切滴答数的解决方案。优选地,图的末端也将用刻度标记标记。我怎样才能设置刻度线的数量?
答案 0 :(得分:-1)
pyplot.locator_params(axis='y', nbins=10) # y-axis
pyplot.locator_params(axis='x', nbins=10) # x-axis
pyplot.locator_params(nbins=10) # both
另请参阅:http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.locator_params