There is a package in R that we can use to set preferences for using certain functions when there are multiple occurence of same function names. For example, dplyr::select tends to be overridden by MARS::select. Any help?
#RStats #EconTwitter
4
2
You may be looking for the `conflicted` package. (And you meant MASS::select here.)
You can also use selective attaching, either via NAMESPACE in a package, or via library() explicitly choose (or exclude) certain identifiers.
Sep 4, 2021 · 3:17 PM UTC
1
2

