matplotlib remove axis label offset by default

In 2013 a boolean matplotlibrc parameter called axes.formatter.useoffset was added, which can switch off the offset.

For example like this:

import matplotlib as mpl
mpl.rcParams['axes.formatter.useoffset'] = False

Leave a Comment