I'm unable to load the car package in R. I tried reinstalling using
install.packages("car",dependencies=TRUE)
both from R and RStudio. I tried installing quantreg
as advised in another post and then installing it again. Installation appears to be successful, but simply can't load the program.
Here's the complete error:
Error in loadNamespace(j <- i[[1L]], c(lib.loc, .libPaths()), versionCheck = vI[[j]]) : there is no package called ‘pbkrtest’
In addition: Warning message: package ‘car’ was built under R version 3.2.3
Error: package or namespace load failed for ‘car’
update.package(checkBuilt = TRUE)
. Finally, try againinstall.packages("car", dependencies=TRUE)
. If it doesn't work, try to install packagepbkrtest
first. – user3710546update.packages(checkBuilt = TRUE)
– stas g