Diagonal elements of the hat matrix
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 class 'merMod' hatvalues(model, fullHatMatrix = FALSE, ...)
model |
An object of class |
fullHatMatrix |
Return full hat matrix (not just diagonal values)? |
... |
Not currently used |
The diagonal elements of the hat matrix.
m <- lmer(Reaction ~ Days + (Days | Subject), sleepstudy) hatvalues(m)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.