0
Good night when after installing the Rcmdr package, I cannot load it to use. Does this message appear? Can anyone tell me what I can do pfv?
local({pkg <- select.list(Sort(. Packages(all.available = TRUE)),Graphics=TRUE) + if(nchar(pkg)) library(pkg, Character.only=TRUE)}) Loading required package: splines Loading required package: Rcmdrmisc Loading required package: car Loading required package: carData Error: package or namespace load failed for áticar' in loadNamespace(j <- i[[[1L]], c(lib.Loc, .libPaths()), versionCheck = vi[[j]]): there is no package called ːdata.table' Error: package +car' could not be Loaded
The relevant part is there is no package called ːdata.table'. You have to install the package
data.table
. Note: this package has had problems with the latest version of R 3.5.0. I tried this and it worked.– Rui Barradas