Problems loading the Rcmdr

Asked

Viewed 483 times

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

  • 4

    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.

1 answer

1

When installing a package you can ask R to urge the dependencies together. For example:

install.packages('Rcmdr', dependencies = TRUE)

should solve the problem.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.