First I uploaded a csv using "fread", then I was trying to convert a string vector into a float/numeric vector.
column1 looks like this:
print(column)
c("0.100005", "0.785222", "0.975222", ...)
I used something like this:
as.numeric(df$column1)
or
as.double(df$column1)
The dataset was uploaded like a datatable class, and the mentiones options didn't work.
Does anyone know any solutions on this issue?