如何更改matplotlib轴,使其不以科学记数法显示?

时间:2014-12-06 06:11:01

标签: python python-2.7 numpy matplotlib

如何更改matplotlib轴以使其不以科学记数法显示? (即在这种情况下显示626.70 ... 626.77) 我尝试通过执行ax.xaxis.set_ticks(np.arange(626.720, 626.727, 0.001))来改变x刻度,但是轴都被塞在左侧。

感谢。 enter image description here

1 个答案:

答案 0 :(得分:1)

x_formatter = matplotlib.ticker.ScalarFormatter(useOffset=False)
x_formatter.set_scientific(False)
ax.xaxis.set_major_formatter(x_formatter)