gamlss overwriting dplyr::select Off me already
4
1
34
library(pkg, include.only = c("name", "name2")) library(gamlss, exclude = "select") Works as of #RStats 3.6 stat.ethz.ch/R-manual/R-deve…
1
5
14
Yep, a *much* underappreciated feature. I tried at the time to write a blog post about it but somehow stumbled and it never became a regular usage pattern for me as I tend to explicitly import via `::` from packages known to be potentially troublesome.

Jun 25, 2023 · 3:55 PM UTC

1
5
You mean doing something like select <- dplyr::select at the beginning of a script or always using the pkg::function() form for these conflicting packages?