I have been trying for several hours to globally turn off scientific notation and the offset in matplotlib. my attempt at a solution
import matplotlib as mpl
import matplotlib.pyplot as plt
The documentation says:
set the rcParam axes.formatter.useoffset=False to turn it off globally, or set a different formatter.
mpl.rcParams.formatter.useoffset = False
Of course this fails because there is no formatter for rcParam
mpl.ticker.FuncFormatter.__setattr__('set_scientific',False)
I am completely lost trying to do this. I have just switched from matlab. So I apologize if this is very basic