conflicts_prefer {conflicted} | R Documentation |
conflicts_prefer()
allows you to declare "winners" of conflicts,
declaring one or many winners at once.
See conflict_prefer()
for more precise control.
conflicts_prefer(..., .quiet = FALSE)
... |
Functions to prefer in form |
.quiet |
If |
I recommend placing a single call to conflicts_prefer()
at the top of
your script, immediately after loading all needed packages with calls to
library()
.
conflicts_prefer(
dplyr::filter(),
dplyr::lag(),
)
# or
conflicts_prefer(
dplyr::filter,
dplyr::lag,
)