我正在使用MASS包中的OME数据,而我正在使用gee包来适应模型。
model <- gee(cbind(Correct, Trials-Correct)~Loud+Age+OME+Noise, id=ID,
data=OME, family=binomial, corstr="exchangeable")
我正在尝试使用预测,但却收到错误
predict(model,newdata=OME[1,])
Error in seq_len(p) : argument must be coercible to non-negative integer In addition: Warning messages: 1: In predict.lm(object, newdata, se.fit, scale = 1, type = ifelse(type == : calling predict.lm(<fake-lm-object>) ... 2: In seq_len(p) : first element used of 'length.out' argument
我知道我的例子我可以做predict(model)[1]
我只想知道一般情况。
谢谢!