by reading excel with pandas trying to convert floats to string with all decimal points
df = pd.read_excel('data/DHTest.xlsx', keep_default_na=False, na_filter=False, dtype=str)
input in excel -0.00001 results to output in parquet -1e-05
--
if I try to run without dtype=str
df = pd.read_excel('data/DHTest.xlsx', keep_default_na=False, na_filter=False, dtype=str)
results from -0.00001 to -0.00001 but by converting to string df = df.astype('string') creates again -1e-05
I need to write parquet with all columns as string df.to_parquet('data/DHTest.parquet') with output -0.00001 and not -1e-05
df['column'].map('{:,.6f}'.format)