def __init__(self, useOffset=True, useMathText=None, useLocale=None):
# useOffset allows plotting small data ranges with large offsets: for
# example: [1+1e-9,1+2e-9,1+3e-9] useMathText will render the offset
# and scientific notation in mathtext
self.set_useOffset(useOffset)
2条答案
按热度按时间bbuxkriu1#
In 2013添加了一个名为
axes.formatter.useoffset
的布尔matplotlibrc参数,它可以关闭偏移量。例如:
oprakyz72#
不,没有办法。它在
ticker.py
的源文件第353行中定义:作为默认参数值。默认值为
True
。当然,您可以修改源代码。