r - Error in library(dplyr) : there is no package called ‘dplyr’

r – Error in library(dplyr) : there is no package called ‘dplyr’

r – Error in library(dplyr) : there is no package called ‘dplyr’

Try install.packages(dplyr), the double quote is important.

You dont have the package installed. To do that use :ninstall.packages(dplyr)

n

Then library(dplyr)

r – Error in library(dplyr) : there is no package called ‘dplyr’

this problem happened to me, too. The reason is that after you run install.packages(dplyr), the package installed in your R library (check here: C:\Program Files\R\R-3.5.1\library) is actually called dbplyr.

n

So if you run library(dplyr), there should be no library under this name.

n

My solution is: turn off R studio, open it again. The run:

n

install.packages(Rcpp)ninstall.packages(dplyr)n

Related posts on package  :

Leave a Reply

Your email address will not be published. Required fields are marked *