Come organizzare le righe per gruppo utilizzando dplyr (con esempi)


È possibile utilizzare i seguenti metodi per organizzare le righe per gruppo in dplyr:

Metodo 1: disporre le righe in ordine crescente per gruppo

 library (dplyr)

#arrange rows in ascending order based on col2, grouped by col1
df %>%
  group_by(col1) %>%
  arrange(col2, . by_group = TRUE )

Metodo 2: disporre le righe in ordine decrescente per gruppo

 library (dplyr)

#arrange rows in descending order based on col2, grouped by col1
df %>%
  group_by(col1) %>%
  arrange( desc (col2), . by_group = TRUE )

Metodo 3: organizzare le linee in più gruppi

 library (dplyr)

#arrange rows based on col3, grouped by col1 and col2
df %>%
  group_by(col1, col2) %>%
  arrange(col3, . by_group = TRUE )

Questo tutorial spiega come utilizzare ciascun metodo nella pratica con il seguente frame di dati:

 #create data frame
df <- data. frame (team=c('A', 'A', 'A', 'A', 'B', 'B', 'B', 'B'),
                 position=c('G', 'G', 'F', 'F', 'G', 'G', 'F', 'F'),
                 points=c(10, 12, 3, 14, 22, 15, 17, 17))

#view data frame
df

  team position points
1 AG 10
2 AG 12
3 AF 3
4 AF 14
5 BG 22
6 BG 15
7 BF 17
8 BF 17

Esempio 1: disporre le righe in ordine crescente per gruppo

Il codice seguente mostra come disporre le righe in ordine crescente in base ai punti , raggruppate per colonna della squadra :

 library (dplyr)

#arrange rows in ascending order by points, grouped by team
df %>%
  group_by(team) %>%
  arrange(points, . by_group = TRUE )

# A tibble: 8 x 3
# Groups: team [2]
  team position points
        
1 AF 3
2 AG 10
3 AG 12
4 AF 14
5 BG 15
6 BF 17
7 BF 17
8 BG 22

Le linee sono elencate in ordine crescente (dalla più piccola alla più grande) per punti , raggruppate per colonna della squadra .

Esempio 2: disporre le righe in ordine decrescente per gruppo

Il codice seguente mostra come disporre le righe in ordine decrescente in base ai punti , raggruppate per colonna della squadra :

 library (dplyr)

#arrange rows in descending order by points, grouped by team
df %>%
  group_by(team) %>%
  arrange( desc (dots), .by_group = TRUE )

# A tibble: 8 x 3
# Groups: team [2]
  team position points
        
1 AF14
2 AG 12
3 AG 10
4 AF 3
5 BG 22
6 BF 17
7 BF 17
8 BG 15

Le righe sono elencate in ordine decrescente (dalla più grande alla più piccola) per punti , raggruppate per colonna della squadra .

Esempio 3: organizzare le linee in più gruppi

Il codice seguente mostra come disporre le righe in ordine crescente in base ai punti , raggruppate per squadra e colonne di posizione :

 library (dplyr)

#arrange rows in descending order by points, grouped by team and position
df %>%
  group_by(team, position) %>%
  arrange(points, . by_group = TRUE )

# A tibble: 8 x 3
# Groups: team, position [4]
  team position points
        
1 AF 3
2 AF14
3 AG 10
4 AG 12
5 BF 17
6 BF 17
7 BG 15
8 BG 22

Le linee sono elencate in ordine crescente (dalla più piccola alla più grande) per punti , raggruppate per squadra e colonne di posizione .

Risorse addizionali

I seguenti tutorial spiegano come eseguire altre attività comuni in R:

Come filtrare valori univoci utilizzando dplyr
Come filtrare in base a più condizioni utilizzando dplyr
Come contare il numero di occorrenze nelle colonne in R

Aggiungi un commento

Il tuo indirizzo email non sarà pubblicato. I campi obbligatori sono contrassegnati *