Attempting to get rid of scientific notation for a column in a dataframe:
Dataframe has 3 columns: Currency1, Currency2, Rate
When I do: print(data.dtypes)
Currency1, Currency2 are type object, Rate is type float64.
I have tried doing: data['Rate'] = data['Rate'].astype(str)
which doesn't remove the scientific notation.
I need to then output this to a CSV file, so can't use the print options etc. Is there another way please to remove the scientific notation?