Answers for "removing row with specific string in r"

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
0

r remove inf values

df <- df[!is.infinite(rowSums(df)),]
Posted by: Guest on May-30-2020

Code answers related to "removing row with specific string in r"

Browse Popular Code Answers by Language