First, I tried to load dplyr and I got the following message:
Error in loadNamespace(i, c(lib.loc, .libPaths()), versionCheck = vI[[i]]) :
there is no package called ‘DBI’
In addition: Warning message:
package ‘dplyr’ was built under R version 3.2.5
Error: package or namespace load failed for ‘dplyr’
O notice that DBI was missing, so I did install.packages("DBI"). However it seems I can't access dplyr (and other packages by the way) due to objects that are masked...
after installing DBI:
library(dplyr)
Attaching package: ‘dplyr’
The following objects are masked from ‘package:stats’:
filter, lag
The following objects are masked from ‘package:base’:
intersect, setdiff, setequal, union
Warning message:
package ‘dplyr’ was built under R version 3.2.5
Windows 10.
R and RStudio recently downloaded and updated.