Answers for "delete row in R on condition"

R
1

remove rows in r based on row number using dplyr

df %>% slice(2:7)
Posted by: Guest on November-03-2020
1

remove row from matrix r

# Remove third row - by row number
MyMatrix <- MyMatrix[-3,]

# Remove third and fifth rows - by feeding the matrix a boolean vector
MyMatrix <- MyMatrix[c(TRUE,TRUE,FALSE,TRUE,FALSE,TRUE),]
Posted by: Guest on August-21-2020

Code answers related to "delete row in R on condition"

Browse Popular Code Answers by Language