Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR R

delete all rows that contain a string in R

library(dplyr)

df %>% 
  filter(!grepl('REVERSE', Name))
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #delete #rows #string #R
ADD COMMENT
Topic
Name
6+8 =