I am trying to save values in a dataframe to a csv file. However, pandas to csv is rounding so much that my numbers are really off. For example, values like 0.00002134566 would be rounded to a 0.0:
df = pd.read_csv(file_path, float_precision='round_trip')
df['addCol1'] = 0.0005
df.to_csv(f"output_path", index=False, header=False)
Is there any way to tell pandas not to round the numbers?