Como classificar uma tabela em r (com exemplos)


Existem dois métodos que você pode usar para classificar uma tabela em R:

Método 1: Use Base R

 #sort table in ascending order
my_table_sorted <- my_table[order(my_table)]

#sort table in descending order
my_table_sorted <- my_table[order(my_table, decreasing= TRUE )]

Método 2: use dplyr

 library (dplyr)

#sort table in ascending order
my_table_sorted<- my_table %>% as. data . frame () %>% arrange(Freq)

#sort table in descending order
my_table_sorted<- my_table %>% as. data . frame () %>% arrange(desc(Freq))

Os exemplos a seguir mostram como usar cada método na prática com a seguinte tabela em R:

 #createvector
data <- c(3, 8, 8, 8, 7, 7, 5, 5, 5, 5, 9, 12, 15, 15)

#create table
my_table <- table(data)

#view table
my_table

data
 3 5 7 8 9 12 15 
 1 4 2 3 1 1 2

Exemplo 1: Classifique a tabela usando Base R

Podemos usar o seguinte código para classificar os valores do array em ordem crescente usando a função R base order() :

 #sort table in ascending order
my_table_sorted <- my_table[order(my_table)]

#view sorted table
my_table_sorted

data
 3 9 12 7 15 8 5 
 1 1 1 2 2 3 4

E podemos usar o argumento descendente=True na função order() para classificar os valores do array em ordem decrescente:

 #sort table in descending order
my_table_sorted <- my_table[order(my_table, decreasing= TRUE )]

#view sorted table
my_table_sorted

data
 5 8 7 15 3 9 12 
 4 3 2 2 1 1 1

Exemplo 2: Classifique a tabela usando dplyr

Podemos usar o seguinte código para classificar os valores do array em ordem crescente usando a função organizar() do pacote dplyr:

 library (dplyr)

#sort table in ascending order
my_table_sorted <- my_table %>% as. data . frame () %>% arrange(Freq)

#view sorted table
my_table_sorted

  data Freq
1 3 1
2 9 1
3 12 1
4 7 2
5 15 2
6 8 3
7 5 4

E podemos usar a função desc() para classificar os valores do array em ordem decrescente:

 library (dplyr)

#sort table in descending order
my_table_sorted <- my_table %>% as. data . frame () %>% arrange(desc(Freq))

#view sorted table
my_table_sorted

  data Freq
1 5 4
2 8 3
3 7 2
4 15 2
5 3 1
6 9 1
7 12 1

Nota : Você pode encontrar a documentação completa para a função dplyr organize() aqui .

Recursos adicionais

Os tutoriais a seguir explicam como realizar outras tarefas comuns em R:

Como criar uma tabela de frequência por grupo em R
Como criar uma tabela bidirecional em R
Como plotar uma tabela em R

Add a Comment

O seu endereço de email não será publicado. Campos obrigatórios marcados com *