Returns the values on the diagonal of the hat matrix, which is the matrix that transforms the response vector (minus any offset) into the fitted values (minus any offset). Note that this method should only be used for linear mixed models. It is not clear if the hat matrix concept even makes sense for generalized linear mixed models.
# S3 method for merMod
hatvalues (model, fullHatMatrix = FALSE, ...)
An object of class merMod
.
Return full hat matrix (not just diagonal values)?
Not currently used
The diagonal elements of the hat matrix.
# NOT RUN {
m <- lmer(Reaction ~ Days + (Days | Subject), sleepstudy)
hatvalues(m)
# }
Run the code above in your browser using DataLab