2
Good afternoon to you... I’m trying to import csv where decimals are separated by dots... or something like 2.5
I want when it’s time to import it to show 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 don’t know what the problem is!
I don’t think you can use the same column and decimal separator
– Daniel Falbel