Skip to content

residuals in lmer

1 message · Liaw, Andy

#
qqnorm() is an S3 generic without a method for lmer.  It doesn't
even have methods for other models based on S3:
[1] qqnorm.default

So why do you think qqnorm(fittedModel) will work?  You can do

  qqnorm(residuals(crop.lme))

Andy