R/4-conflicts.R
massdataset_conflicts.Rd
This function lists all the conflicts between packages in the massdataset and other packages that you have loaded.
massdataset_conflicts()
massdataset conflicts
There are four conflicts that 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.
massdataset_conflicts()
#> ── Conflicts ──────────────────────────────────────── massdataset_conflicts() ──
#> ✖ massdataset::apply() masks base::apply()
#> ✖ methods::body<-() masks base::body<-()
#> ✖ massdataset::colMeans() masks base::colMeans()
#> ✖ massdataset::colSums() masks base::colSums()
#> ✖ tidyr::extract() masks magrittr::extract()
#> ✖ dplyr::filter() masks massdataset::filter(), stats::filter()
#> ✖ lubridate::intersect() masks massdataset::intersect(), base::intersect()
#> ✖ methods::kronecker() masks base::kronecker()
#> ✖ dplyr::lag() masks stats::lag()
#> ✖ massdataset::rowMeans() masks base::rowMeans()
#> ✖ massdataset::rowSums() masks base::rowSums()
#> ✖ purrr::set_names() masks magrittr::set_names()