SyntaxFix
Write A Post
Hire A Developer
Questions
This should do the trick:
df[- grep("REVERSE", df$Name),]
Or a safer version would be:
df[!grepl("REVERSE", df$Name),]