Posts by Lucas Guimarães • 171 points
1 post
-
17
votes7
answers9711
viewsQ: Remove accents
I need to know how to remove the accents of a die in a column. # Eu tentei > library(stringr) > a <- dados$Municipio[2] > a [1] "Arapeí" > str_replace_all(a, "[í]", "i") [1]…
rasked Lucas Guimarães 171