Good afternoon ... I'm trying to import csv where the decimals are separated by a point ... or something like 2.5
I want it to come up with a comma, something like that, 2,5
uo_14<- read.csv2("csv\uo_2014.csv", as.is = FALSE , header = TRUE,
sep = ",", dec=",", encoding='UTF-8' )
uo_14
nome valor1 valor 2
nome1 3.5 3.6
nome2 5.4 1.7
I do not know what's wrong!