r how to remove a string from all rows in a dataframe code example
Example 1: r remove row dataframe
myData[-c(2, 4, 6), ] # remove rows 2, 4, 6
Example 2: delete all rows that contain a string in R
df[ grep("REVERSE", df$Name, invert = TRUE) , ]