When we import data into R it sorts the categories alphabetically. How do I change this order?
Suppose it is the following data:
df <- data.frame(categorias=c("Muito baixa","Baixa","Média","Alta","Muito alta"),
valores=seq(1:5))
> levels(df$categorias)
[1] "Alta" "Baixa" "Média" "Muito alta" "Muito baixa"