How can I suppress scientific notation for integer numbers in data frames in Pandas?
I got this:
48726528
97573906
7E+07
instead of this:
48726528
97573906
69857386
How can I suppress scientific notation for integer numbers in data frames in Pandas?
I got this:
48726528
97573906
7E+07
instead of this:
48726528
97573906
69857386
You need to be sure that your values are indeed integers.
If you wish, you can convert it in integers:
df[your_column].astype(int)