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
Replying to @nithinnithu_m
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
Replying to @eddelbuettel
Yes exactly..that was a typo. Thanks a lot