小编典典

Python-如何删除Matplotlib轴上的相对位移

python

当我尝试对具有足够大数字的范围进行绘图时,我得到了所有刻度线都相对移动的轴。例如:

plot([1000, 1001, 1002], [1, 2, 3])

我在横坐标轴上得到了这些刻度:


0.0     0.5     1.0     1.5     2.0
                               +1e3

问题是如何删除+1e3并获取:

1000.0  1000.5  1001.0  1001.5  1002.0

阅读 599

收藏
2020-02-19

共1个答案

小编典典

plot([1000, 1001, 1002], [1, 2, 3])
gca().get_xaxis().get_major_formatter().set_useOffset(False)
draw()

这将抓取current axes,获取x轴axis对象,然后获取主formatter对象,并将useOffset设置为false(doc)。

在matplotlib的较新版本(1.4+)中,可以通过axes.formatter.useoffsetrcparam 更改默认行为。

2020-02-19