Ich habe diese Daten:
set.seed(1)
predictor <- rnorm(20)
set.seed(1)
counts <- c(sample(1:1000, 20))
df <- data.frame(counts, predictor)
Ich habe eine Poisson-Regression durchgeführt
poisson_counts <- glm(counts ~ predictor, data = df, family = "poisson")
Und eine negative binomiale Regression:
require(MASS)
nb_counts <- glm.nb(counts ~ predictor, data = df)
Dann berechnete ich für die Dispersionsstatistik für die Poisson-Regression:
sum(residuals(poisson_counts, type="pearson")^2)/df.residual(poisson_counts)
# [1] 145.4905
Und die negative binomiale Regression:
sum(residuals(nb_counts, type="pearson")^2)/df.residual(nb_counts)
# [1] 0.7650289
Kann jemand ohne Verwendung von Gleichungen erklären, warum die Dispersionsstatistik für die negative binomiale Regression erheblich kleiner ist als die Dispersionsstatistik für die Poisson-Regression?