|
I'm fitting a mixed beta-regression model in glmmTMB. Are the calculated residuals, weighted residuals (and which type), or are they standardized ordinary residuals? |
Replies: 1 comment
|
It uses the standard |
|
I'm fitting a mixed beta-regression model in glmmTMB. Are the calculated residuals, weighted residuals (and which type), or are they standardized ordinary residuals? |
|
It uses the standard |
It uses the standard
residuals()function from the glmmTMB package. The default for this function is"response", that is, simplyres = response - fittedresiduals, not weights or scaling. There is potentially an argument that we should use weighted Pearson residuals instead, but currently the default response residuals are used.