Jak sortować tabelę w r (z przykładami)


Istnieją dwie metody sortowania tabeli w języku R:

Metoda 1: Użyj podstawy 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 )]

Metoda 2: użyj 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))

Poniższe przykłady pokazują, jak zastosować każdą metodę w praktyce z poniższą tabelą w 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

Przykład 1: Posortuj tabelę za pomocą podstawy R

Możemy użyć poniższego kodu do posortowania wartości tablicy w kolejności rosnącej za pomocą funkcji 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

I możemy użyć argumentu malejącego=True w funkcji Order(), aby posortować wartości tablicy w kolejności malejącej:

 #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

Przykład 2: Posortuj tabelę za pomocą dplyr

Możemy użyć poniższego kodu do posortowania wartości tablicy w kolejności rosnącej za pomocą funkcji aranżacji() z pakietu 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

I możemy użyć funkcji desc() do posortowania wartości tablicy w kolejności malejącej:

 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

Uwaga : pełną dokumentację funkcji dplyr aranż() można znaleźć tutaj .

Dodatkowe zasoby

Poniższe samouczki wyjaśniają, jak wykonywać inne typowe zadania w języku R:

Jak utworzyć tabelę częstości według grup w R
Jak utworzyć tabelę dwukierunkową w R
Jak narysować tabelę w R

Dodaj komentarz

Twój adres e-mail nie zostanie opublikowany. Wymagane pola są oznaczone *