0

I have the nlme package loaded, however, while ?coef.lme gives me the description of the function. But then

   coef.lme(m4)
   Error in coef.lme(m4) : could not find function "coef.lme"
Agus camacho
  • 868
  • 2
  • 9
  • 24
  • 2
    Just use `coef(m4)`. Generally speaking generic functions for specific classes aren't exported directly from the package. That's how it's shown in the "Examples" section of that help page. – MrFlick Apr 12 '21 at 17:35
  • 1
    If you *really* want to call that function you can use `:::`, for example `nlme:::coef.lme`. – Ian Campbell Apr 12 '21 at 17:51

0 Answers0