residuals.LMMsolve {LMMsolver} | R Documentation |
Residuals of an LMMsolve object.
Description
Obtain the residuals from a mixed model fitted using LMMSolve.
Usage
## S3 method for class 'LMMsolve'
residuals(object, ...)
Arguments
object |
an object of class LMMsolve |
... |
some methods for this generic require additional arguments. None are used in this method. |
Value
A vector of residuals.
Examples
## Fit model on john.alpha data from agridat package.
data(john.alpha, package = "agridat")
## Fit simple model with only fixed effects.
LMM1 <- LMMsolve(fixed = yield ~ rep + gen,
data = john.alpha)
## Obtain fitted values.
residuals1 <- residuals(LMM1)
[Package LMMsolver version 1.0.7 Index]