Answers for "r remove specific string in dataframe"

R
0

delete all rows that contain a string in R

library(dplyr)

df %>% 
  filter(!grepl('REVERSE', Name))
Posted by: Guest on May-24-2020

Code answers related to "r remove specific string in dataframe"

Browse Popular Code Answers by Language