Come eliminare righe in r (con esempi)
È possibile utilizzare la seguente sintassi per rimuovere numeri di riga specifici in R:
#remove 4th row new_df <- df[-c(4), ] #remove 2nd through 4th row new_df <- df[-c(2:4), ] #remove 1st, 2nd, and 4th row new_df <- df[-c(1, 2, 4), ]
È possibile utilizzare la seguente sintassi per rimuovere le righe che non soddisfano condizioni specifiche:
#only keep rows where col1 value is less than 10 and col2 value is less than 6 new_df <- subset(df, col1 < 10 & col2 < 6)
E puoi utilizzare la seguente sintassi per rimuovere righe con valore NA in qualsiasi colonna:
#remove rows with NA value in any column new_df <- na. omitted (df)
Gli esempi seguenti mostrano come utilizzare nella pratica ciascuna di queste funzioni.
Esempio 1: Elimina righe per numero
Il codice seguente mostra come eliminare le righe in base al numero di riga specifico in R:
#create data frame df <- data. frame (player=c('A', 'B', 'C', 'D', 'E'), pts=c(17, 12, 8, 9, 25), rebs=c(3, 3, 6, 5, 8), blocks=c(1, 1, 2, 4, NA)) #view data frame df player pts rebs blocks 1 to 17 3 1 2 B 12 3 1 3 C 8 6 2 4 D 9 5 4 5 E 25 8 NA #remove 4th row df[-c(4), ] player pts rebs blocks 1 to 17 3 1 2 B 12 3 1 3 C 8 6 2 5 E 25 8 NA #remove 2nd through 4th row df[-c(2:4), ] player pts rebs blocks 1 to 17 3 1 5 E 25 8 NA #remove 1st, 2nd, and 4th row df[-c(1, 2, 4), ] player pts rebs blocks 3 C 8 6 2 5 E 25 8 NA
Esempio 2: Elimina righe in base alla condizione
Il codice seguente mostra come rimuovere le righe che non soddisfano una condizione specifica:
#create data frame df <- data. frame (player=c('A', 'B', 'C', 'D', 'E'), pts=c(17, 12, 8, 9, 25), rebs=c(3, 3, 6, 5, 8), blocks=c(1, 1, 2, 4, NA)) #view data frame df player pts rebs blocks 1 to 17 3 1 2 B 12 3 1 3 C 8 6 2 4 D 9 5 4 5 E 25 8 NA #only keep rows where pts is less than 10 and rebs is less than 6 subset(df, pts < 10 & rebs < 6) player pts rebs blocks 4 D 9 5 4
Esempio 3: Elimina righe con valori NA
Il codice seguente mostra come rimuovere le righe con un valore NA in qualsiasi riga:
#create data frame df <- data. frame (player=c('A', 'B', 'C', 'D', 'E'), pts=c(17, 12, 8, 9, 25), rebs=c(3, 3, 6, 5, 8), blocks=c(1, 1, 2, 4, NA)) #view data frame df player pts rebs blocks 1 to 17 3 1 2 B 12 3 1 3 C 8 6 2 4 D 9 5 4 5 E 25 8 NA #remove rows with NA value in any row: n / A. omitted (df) player pts rebs blocks 1 to 17 3 1 2 B 12 3 1 3 C 8 6 2 4 D 9 5 4
Risorse addizionali
Come aggiungere righe a un frame di dati in R
Come rimuovere le righe duplicate in R
Come sommare righe specifiche in R