I have a pandas Series that is populated with floats. When I convert the pandas
series to a list later on some of the floats are in scientific notation. There are lots of posts on stackoverflow which changes the display of pandas float which I totally understand, but I need these values all to be in decimal format when I call the .tolist()
method.
s = pd.Series([-3.75e-05,
-6.25e-05,
-8.75e-05,
-8.75e-05,
-8.75e-05,
-0.0001125,
-0.00015,
-0.0001625,
-0.0001625,
-0.0001625])
Why are some floating point numbers being printed with scientific notation and some are using decimal?