Filtering row which contains a certain string using dplyr in R. #r
library(dplyr) iris %>% filter(grepl("se", Species))