I analyzed cox proportional hazard regression with example data.
My R code is below.
install.packages("randomForestSRC")
install.packages("survival")
library(randomForestSRC)
library(survival)
data(pbc, package="randomForestSRC")
pbc.na <- na.omit(pbc)
surv.f <- as.formula(Surv(days, status) ~ .)
cox.obj <- coxph(surv.f, data=pbc.na)
cox.obj
cox.obj$linear.predictors
What I want to know is that "linear.predictors".
All of the objects in my data seem to have this index, but I have no idea exactly.
Please let me know what it is.
Thans always.