Skip to content
Prev 299373 / 398503 Next

How to intall "car" package on linux

Install.packages needs a quoted argument -- the error message suggests
that its looking for a variable named `car` and not finding it -- in
fact, most functions taking package names do, but library() allows
some trickery, which is convenient, but occasionally leads to mishaps
like this.

install.packages("car")

should work.

Best,
Michael
On Fri, Jul 6, 2012 at 7:39 PM, Chenwei Gao <gaoch at umich.edu> wrote: