bs <- survivalROC(pred, data$times, data$status, plotit = FALSE, method = "average") bs如何得到综合布里尔得分,看结果表的哪个?怎么看,有没有具体案例
时间: 2023-12-03 21:45:06 浏览: 92
Code.rar_PRED-163_matlab pred_社交网络_社交网络分析 链路预测_链路预测
5星 · 资源好评率100%
在 `survivalROC` 函数的输出结果中,综合布里尔得分对应的是 `Cindex`,也可以称为时间依赖的曲线下面积(time-dependent area under the curve,tAUC)。具体案例可以参考以下代码:
``` r
# 导入survivalROC包
library(survivalROC)
# 导入survival包
library(survival)
# 使用lung数据集
data(lung)
# 构建模型
fit <- coxph(Surv(time, status) ~ age + sex + ph.ecog, data = lung)
# 预测概率
pred <- predict(fit, type = "lp")
# 计算综合布里尔得分
bs <- survivalROC(pred, lung$time, lung$status, plotit = FALSE, method = "average")
# 输出结果
bs
```
输出结果中的 `Cindex` 就是综合布里尔得分。
阅读全文