这可能是一个简单的编码问题,但我一生都无法得到它。使用此代码进行 logit:
glm(formula = cbind(Found, Missing) ~ Male + Age, family = binomial,
data = table.5.15)
我无法让 Hosmer-Lemeshow 工作:
hosmerlem(miss.logit$cbind(Found,Missing), fitted(miss.logit))
Error in cbind(1 - y, y) : attempt to apply non-function
我意识到这是cbind
在我的 logit 模型中存在的问题。