I am working with python / pandas.
My dataframe contains one column called 'id' with 20-digit IDs like 1225485903482773506 with datatype float.
If I convert the column to string with
df['id'] = df['id'].apply(str)
They come out as something like this 1.289050198535111e+18
How do I convert them to string without the scientific notation?
df.dtypes