R, Car Package Unable to Load

R, car package unable to load

It seems that you did not install the dependencies automatically when you installed car. I'm assuming that you tried installing with Rstudio, which does not automatically install dependencies.

This SO post and this one should help you to install them automatically.

Try reinstalling with the command install.packages("car",dependencies=TRUE).

Additionally, in the future you can check the CRAN page to see the depends, imports, suggests, etc.

I can't open car library in r

You need to install the abind package as well (and perhaps other packages as well), which is only listed under Imports in the Description file of the car package

install.packages("abind")

or

install.packages("car", dependencies = "Imports")

should work.



Related Topics



Leave a reply



Submit