The summary of glm()
function in R gives the quantile of deviance residuals (e.g., see below). I know how to get them (e.g., without using glm()
) but I don't know how to use them. Because it is a standard output, I assume it may give some useful (crude) diagnostic for something, but I don't know what it is. I am not asking how to use deviance residuals in general. I want to know how to use this quantile information.
Although the example below uses a Poisson, I am interested in general interpretation, not the interpretation of this specific example.
> summary(glm(rpois(100,1)~1,family=poisson))
Call:
glm(formula = rpois(100, 1) ~ 1, family = poisson)
Deviance Residuals:
Min 1Q Median 3Q Max
-1.46969 -1.46969 -0.07796 0.79041 2.73583