Posts by Enoch • 152 points
5 posts
- 
		2 votes2 answers3531 viewsA: Problem with accentuation - R# Instalar o pacote abjutils, se ainda não tiver instalado: # install.packages("abjutils") library(abjutils) x <- c("maceió", "acentuação") rm_accent(x) #> [1] "maceio" "acentuacao" Created on… 
- 
		4 votes1 answer73 viewsQ: Make a matrix of origins and destinationsI need to fill a table with origins and destinations so that each cell contains the total number of people leaving from one location to another. The database has an id for each observation, as well… 
- 
		4 votes1 answer3746 viewsQ: How to change the font on a chart in R?I want to use the source Times New Roman on the chart, but the R/Rstudio returns an error message saying not to find it. Obviously the source is somewhere because I use MS Word, for example. A while… 
- 
		1 votes1 answer805 viewsA: Creation of graphical user interface in RMaybe the "COMMAND (Rcmdr)" be what you are looking for. See website and now has even a book. It is a graphical interface for R that has several plugins. Here, including, several buttons, menus and… 
- 
		2 votes1 answer3371 viewsQ: How to change the class of a variable within a table/ data frame/ Tibble?I have a table called tab01 with the following variables (columns) and their respective classes in parentheses: uf (Character), regiao (Character), ano (double) and pop (double). I want, inside the…