4
I have the following number that I am importing from a site, I put in the following way not to need to put all the import code of the data
a <- as.character("353.636.000.000")
I’d like to turn that into a number, but I’m not getting it
I tried to do it this way, separate the terms by .
and then unite again and turn into number, but it didn’t work
temp2 <- strsplit(temp2, ".")
I need it to result in an object a
with value of 353636000000
excellent, thank you very much
– Henrique Faria de Oliveira