这是当您在 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 包组合使用格点图,所以需要使用格点函数来完成具有边际年龄密度特征的注释。另一方面,如果您想将响应值更改为相对危险,您只需在 Predict 调用中添加一个 'fun=exp' 参数并关联图表即可获得:
png(); plot(Predict(f, age, sex, fun=exp), ylab="Relative Hazard");dev.off()