Conflicts between the kunstomverse and other packages
kunstomverse_conflicts.Rd
This function lists all the conflicts between packages in the kunstomverse and other packages that you have loaded.
Details
If dplyr is one of the select packages, then the following four conflicts
are deliberately ignored: intersect
, union
, setequal
,
and setdiff
from dplyr. These functions make the base equivalents
generic, so shouldn't negatively affect any existing code.
Examples
kunstomverse_conflicts()
#> ── Conflicts ─────────────────────────────────────── kunstomverse_conflicts() ──
#> ✖ lubridate::as.difftime() masks base::as.difftime()
#> ✖ scales::col_factor() masks readr::col_factor()
#> ✖ lubridate::date() masks base::date()
#> ✖ scales::discard() masks purrr::discard()
#> ✖ magrittr::extract() masks tidyr::extract()
#> ✖ dplyr::filter() masks stats::filter()
#> ✖ lubridate::intersect() masks base::intersect()
#> ✖ dplyr::lag() masks stats::lag()
#> ✖ magrittr::set_names() masks purrr::set_names()
#> ✖ lubridate::setdiff() masks base::setdiff()
#> ✖ lubridate::union() masks base::union()