Skip to content

LME, where is the package?

3 messages · Yong Wang, Ko-Kang Kevin Wang, Uwe Ligges

#
Hi, all
My R 1.7.1 can not find lme, I just downloaded and installed the file 
lme4 from Crane, is this the same as lme? the problem is R still print no 
function 
named lme, how should I do.
thank you
#
Hi,
file
I believe you are looking for nlme package.  Try to load it.

Kevin

--------------------------------------------
Ko-Kang Kevin Wang, MSc(Hon)
SLC Stats Workshops Co-ordinator
The University of Auckland
New Zealand
#
Ko-Kang Kevin Wang wrote:

            
Well, there is also a function lme() in "lme4".
It works for me (even on the outdated R-1.7.1):

  install.packages("lme4")
  library(lme4)
  lme            # yes, the function is there ...

What happens when you type the above lines? Which version of lme4 are 
you using? Have you compiled from sources yourself?

Note that the CRAN binary version for R-1.7.x of lme4 is 0.4-4 whereas 
the recent version is 0.4-7 which no longer prints

  "This package is in development.  For production work use
  lme from package nlme or glmmPQL from package MASS."

So it's a good idea to upgrade to R-1.8.1 and use a recent version of 
the package, if nlme is not what you are looking for ...

Uwe Ligges