I am trying to load a database
There is a column which contains quite long strings which correspond to code numbers (for instance 078000000000000000)
When I load the data, R turns these numbers into double (so 7,8 E+15)
If I try to turn it into a character with as.character
, it simply becomes "7,8 E+15" so I still lose information
By the way, when loading the data I'm using :
my_data <- fread(file)
And the data is correct, although there is this type problem