residuals.glmmTMB {glmmTMB} | R Documentation |
Compute residuals for a glmmTMB object
Description
Compute residuals for a glmmTMB object
Usage
## S3 method for class 'glmmTMB'
residuals(object, type = c("response", "pearson", "working", "deviance"), ...)
## S3 method for class 'glmmTMB'
deviance(object, ...)
Arguments
object |
a “glmmTMB” object |
type |
(character) residual type |
... |
for method compatibility (unused arguments will throw an error) |
Details
Residuals are computed based on predictions of type "response", i.e. equal to the conditional mean for non-zero-inflated models and to
mu*(1-p)
for zero-inflated modelsComputing deviance residuals depends on the implementation of the
dev.resids
function from the object'sfamily
component; at present this returnsNA
for most "exotic" families (i.e. deviance residuals are currently only implemented for families built into base R plusnbinom1
,nbinom2
). Deviance residuals are based on the conditional distributions only, i.e. ignoring zero-inflation components.Deviance is computed as the sum of squared deviance residuals, so is available only for the families listed in the bullet point above. See deviance.merMod for more details on the definition of the deviance for GLMMs.