R predict.cox 期望函数类型

R predict.cox function type expected

我正在使用 cox 模型进行预测。

fit <- coxph(Surv(time, status) ~ age + ph.ecog + strata(inst), lung)
predict(fit,type="expected")

在 predict.coxph 文档中,它说预期的类型是 'the expected number of events given the covariates and follow-up time'。这里的跟进时间是什么意思?我该如何更改它?

这是一组特定患者特征的 "expected" 示例,其中单个时间选择大于该队列的平均生存时间,但使用 "expected" 的所有唯一机构代码=18=]数据集。

 (pr.fit.new <- predict(fit, newdata=data.frame(age=50, time=365, status=0, 
                                ph.ecog=2,inst=unique(lung$inst[!is.na(lung$inst)]) ),
                        type="expected"))
 [1] 1.1886094 1.7679429 1.6651195 1.3117278 0.7743925 0.8501810
 [7] 1.9686954 1.2560981 2.5845069 0.6513932 1.1241870 1.1515346
[13] 1.1616482 1.9071766 4.2468797 0.4921904 0.5875339 0.5647238

地层有显着不同的 "baseline hazards",对于具有相同协变量和观察期的假设人,"expected" 产生 material 差异。