Closed
Description
Both purrr
and dplyr
have a contains() function, but with different syntax.
For example, if I load dplyr first, and purr afterwards, it will bite me:
library(dplyr)
library(purrr)
data(tips, package = "reshape2")
tips %>% select(contains("total"))
## Error in .p(.x[[i]], ...) : argument ".y" is missing, with no default
May it would be helpful to disambiguate the two functions?