Disable scientific notation.
I wrote a whole post describing why it’s a good idea NOT to use scientific notation.
Here’s the code for both pandas and numpy.
import numpy as np
import pandas
np.set_printoptions(suppress=True)
pd.set_option('display.float_format', lambda x: '%.10f' % x)
To enable again:
np.set_printoptions(suppress=False)
pandas.reset_option('display.float_format')