谁能帮我使用 matplotlib 将刻度设置在固定位置?正如本教程所述,我尝试使用 FixedPosition:
ax = pl.gca()
ax.xaxis.set_major_locator(eval(locator))
http://scipy-lectures.github.io/intro/matplotlib/matplotlib.html#figures-subplots-axes-and-ticks
但是当我尝试运行时,它告诉我 set_major_locator 方法不存在。
一个简单的例子会非常有用。
谢谢。