Skip to content
Prev 6927 / 20628 Next

Bootstrapping an lmer model

On Thu, Nov 3, 2011 at 2:44 PM, Hugo Mildenberger
<Hugo.Mildenberger at web.de> wrote:
I don't think that fm$call ever worked with lme4.  The '4' in the name
is from the use of S4 classes so the only thing that would have worked
is fm at call.

As of R-2.14.0 there is a base-R function called getCall() which is
now used in update, exactly to hide these discrepancies between fitted
models represented at S3 or S4 objects.  So the preferred form is
getCall(fm) instead of either fm$call or fm at call