If I load the MASS
package:
library(MASS)
then load try to run dplyr::select
, I get a error:
library(dplyr)
mtcars %.%
select(mpg)
# Error in select(`__prev`, mpg) : unused argument (mpg)
How can I use dplyr::select
with the MASS
package loaded?