[R] Problem with lme4 use and installation

2008-03-03 Thread Andreas Nord
Dear all, I've been trying to install the lme4 package from http://r-forge.r-project.org/projects/lme4/. However, when wanting to load the package, I get an message saying that x-tabs are masked (see pasted code). Can anyone point to what has gone wrong? Kind regards, Andreas Nord Sweden

Re: [R] Problem with lme4 use and installation

2008-03-03 Thread Charilaos Skiadas
Nothing's wrong. It just means that the package or one of its dependencies, has its own xtabs function, which hides the default xtabs function, since it comes first in the search path. So when you next write xtabs(...), it is this new xtabs that is being loaded. If you want to call the

Re: [R] Problem with lme4 use and installation

2008-03-03 Thread Douglas Bates
On Mon, Mar 3, 2008 at 9:57 AM, Charilaos Skiadas [EMAIL PROTECTED] wrote: Nothing's wrong. It just means that the package or one of its dependencies, has its own xtabs function, which hides the default xtabs function, since it comes first in the search path. So when you next write