filter for all cars that start with "F" mtcars %>% filter(str_detect(model, "^F")). By contrast, grepl() in base R has the opposite syntax.
確定! 回上一頁