I am currently importing a csv file that contains huge positive numbers separated by decimals in a column
tb <- read.csv("data.csv",dec = ";")
4,013,054,922
5,208,913,410
5,514,995,512
5,148,498,611
...
this data in R recognizes it as a character type and I cannot do operations
I have tried with
as.numeric(tb$large)
as.long(tb$large)
as.complex(tb$large)
but it returns rows with NA
and also try the gmp library too, to no avail
I appreciate your help