When I try to do a plot against a range with big enough numbers I get an axis with relative shift for all the ticks. For example:
plot([1000, 1001, 1002], [1
To disable relative shift everywhere, set the rc parameter:
import matplotlib matplotlib.rc('axes.formatter', useoffset=False)