我最近将4个多元回归模型用于相同的预测因子/响应数据。我适合泊松回归的两个模型。
model.pois <- glm(Response ~ P1 + P2 +...+ P5, family=poisson(), ...)
model.pois.inter <- glm(Response ~ (P1 + P2 +...+ P5)^2, family=poisson(), ...)
我使用负二项式回归拟合的两个模型。
library(MASS)
model.nb <- glm.nb(Response ~ P1 + P2 +...+ P5, ...)
model.nb.inter <- glm.nb(Response ~ (P1 + P2 +...+ P5)^2, ...)
我可以使用统计检验来比较这些模型吗?我一直在使用AIC来衡量合身程度,但AFAIK并不代表实际测试。
您想使用统计检验比较模型的拟合度,对吗?您想检验哪种假设?
—
Firefeather
@Firefeather例如,我想测试的拟合度
—
Daniel Standage 2010年
model.nb.inter
是否明显好于model.pois.inter
。是的,AIC较低,但是较低多少代表明显更好?
注意:这个问题的答案实际上不需要包含AIC。
—
Daniel Standage 2010年
我不知道这个问题的答案,但是我可以开始。我知道你可以使用一个检验比较反对(类似比较反对),但我不能保证泊松模型和负二项式模型会工作之间的比较。我想知道用于比较每对方差的检验是否可靠。˚F
—
Firefeather 2010年
model.pois
model.pois.inter
model.nb
model.nb.inter
@Firefeather,是的,我知道有必要控制家庭的信任度。比起Bonferroni,Scheffe在这里更合适吗?
—
Daniel Standage 2010年