Answers for "how to remove the text in one column in r"

R
1

r remove row names

rownames(data) <- c()
Posted by: Guest on March-13-2020
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 "how to remove the text in one column in r"

Browse Popular Code Answers by Language