0.03611642492570208
such numbers are present as string in a CSV file, I wish to read them and perform mathematical operations, but when I read it it is read as String and when i convert it to numeric form it is rounded off.
How can i convert it to numeric value without loosing precision.
Edited :
item_id,deal_probability
6544e41a8817,0.299918385137877
65b9484d670f,0.09258187813010357
8bab230b2ecd,0.15371873083249338
8e348601fefc,0.07208665773638352
8bd2fe400b89,0.25543690938853253
c63dbd6c657f,0.05238764253800446
6d1a410df86e,0.0512983797826358
e8d3e7922b80,0.009989860172001194
2bc1ab208462,0.04119998171932098
This is the format of my csv file and when I read it in my jupyter notebook the value under deal_probability is rounded off to 6 places after decimal.
Expected result :- I want to read the entire csv without any change in the value under deal_probability