Come estrarre righe da un frame di dati in r (5 esempi)
Esistono cinque modi comuni per estrarre righe da un frame di dati in R:
Metodo 1: estrai una riga per posizione
#extract row 2
df[2, ]
Metodo 2: estrai più righe per posizione
#extract rows 2, 4, and 5
df[c(2, 4, 5), ]
Metodo 3: estrarre l’intervallo di righe
#extract rows in range of 1 to 3
df[1:3, ]
Metodo 4: estrae le righe in base a una condizione
#extract rows where value in column1 is greater than 10
df[df$column1 > 10 , ]
Metodo 5: estrazione di righe in base a più condizioni
#extract rows where column1 > 10 and column2 > 5
df[df$column1 > 10 & df$column2 > 5 , ]
#extract rows where column1 > 10 or column2 > 5
df[df$column1 > 10 | df$column2 > 5 , ]
Gli esempi seguenti mostrano come utilizzare ciascun metodo con il seguente frame di dati:
#create data frame
df <- data. frame (team=c('A', 'B', 'C', 'D', 'E'),
points=c(99, 90, 86, 88, 95),
assists=c(33, 28, 31, 39, 34),
rebounds=c(30, 28, 24, 24, 28))
#view data frame
df
team points assists rebounds
1 A 99 33 30
2 B 90 28 28
3 C 86 31 24
4 D 88 39 24
5 E 95 34 28
Esempio 1: estrai una riga per posizione
Il codice seguente mostra come estrarre solo la riga 2 dal frame di dati:
#extract row 2
df[2, ]
team points assists rebounds
2 B 90 28 28
Esempio 2: estrai più righe per posizione
Il codice seguente mostra come estrarre le righe 2, 4 e 5 dal frame di dati:
#extract rows 2, 4, and 5
df[c(2, 4, 5), ]
team points assists rebounds
2 B 90 28 28
4 D 88 39 24
5 E 95 34 28
Esempio 3: estrarre un intervallo di righe
Il codice seguente mostra come estrarre le righe tra 1 e 3:
#extract rows in range of 1 to 3
df[1:3, ]
team points assists rebounds
1 A 99 33 30
2 B 90 28 28
3 C 86 31 24
Esempio 4: estrazione di righe in base a una condizione
Il codice seguente mostra come estrarre le righe il cui valore nella colonna dei punti è maggiore di 90:
#extract rows where value in points column is greater than 90
df[df$points > 90 , ]
team points assists rebounds
1 A 99 33 30
5 E 95 34 28
Esempio 5: estrazione di righe in base a più condizioni
Il codice seguente mostra come estrarre le righe il cui valore nella colonna dei punti è maggiore di 90:
#extract rows where points is greater than 90 and assists is greater than 33
df[df$points > 90 & df$assists > 33 , ]
team points assists rebounds
5 E 95 34 28
Risorse addizionali
I seguenti tutorial spiegano come eseguire altre attività comuni in R:
Come rimuovere le righe duplicate in R
Come eliminare più righe in R
Come contare il numero di righe in R