gpt4 book ai didi

r - 如何使用样条绘制 Cox 风险模型

转载 作者:行者123 更新时间:2023-12-04 20:02:06 26 4
gpt4 key购买 nike

我有以下模型:

coxph(Surv(fulength, mortality == 1) ~ pspline(predictor))

其中 fulength 是随访时间(包括死亡率),predictor 是死亡率的预测值。

上面命令的输出是这样的:
                         coef  se(coef) se2    Chisq DF   p    
pspline(predictor), line 0.174 0.0563 0.0562 9.52 1.00 0.002
pspline(predictor), nonl 4.74 3.09 0.200

如何绘制此模型,以便在 y 轴上获得具有 95% 置信区间和风险比的漂亮曲线?我的目标是类似于以下内容:

enter image description here

最佳答案

这是当您在 rms-package 的 ?cph 中运行第一个示例时得到的:

n <- 1000
set.seed(731)
age <- 50 + 12*rnorm(n)
label(age) <- "Age"
sex <- factor(sample(c('Male','Female'), n,
rep=TRUE, prob=c(.6, .4)))
cens <- 15*runif(n)
h <- .02*exp(.04*(age-50)+.8*(sex=='Female'))
dt <- -log(runif(n))/h
label(dt) <- 'Follow-up Time'
e <- ifelse(dt <= cens,1,0)
dt <- pmin(dt, cens)
units(dt) <- "Year"
dd <- datadist(age, sex)
options(datadist='dd')
S <- Surv(dt,e)

f <- cph(S ~ rcs(age,4) + sex, x=TRUE, y=TRUE)
cox.zph(f, "rank") # tests of PH
anova(f)
plot(Predict(f, age, sex)) # plot age effect, 2 curves for 2 sexes

enter image description here

由于 rms/Hmisc 包组合使用点阵图,因此需要使用点阵函数完成具有边缘年龄密度特征的注释。另一方面,如果您想将响应值更改为相对风险,您只需在 Predict 调用中添加一个 'fun=exp' 参数并关联图表以获得:
png(); plot(Predict(f, age, sex, fun=exp), ylab="Relative Hazard");dev.off()

enter image description here

关于r - 如何使用样条绘制 Cox 风险模型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28385509/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com