我有以下型号:
coxph(Surv(fulength, mortality == 1) ~ pspline(predictor))
其中,fulength是一个随访的持续时间(包括死亡率),预测因子是死亡率的预测因子。
上面命令的输出是:
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%置信区间和风险比的漂亮曲线?我的目标是类似于此:
答案 0 :(得分:4)
这是当你在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
因为rms / Hmisc包组合使用晶格图,所以需要使用晶格函数完成具有边际年龄密度特征的注释。另一方面,如果您想将响应值更改为相对危险,您只需添加一个&#39; fun = exp&#39;对Predict调用的参数,并使图表重新获得:
png(); plot(Predict(f, age, sex, fun=exp), ylab="Relative Hazard");dev.off()