简体   繁体   English

R : 在 RandomForestSRC 中拟合具有时变协变量的生存树

[英]R :Fitting survival trees with time-varying covariates in RandomForestSRC

In the package LTRCtrees one can fit a decision tree to the special format of the Surv function :Surv(time, time2, event) as per below example在包 LTRCtrees 中,可以按照以下示例将决策树拟合为 Surv 函数的特殊格式:Surv(time, time2, event)

set.seed(0)
library(survival)
library(LTRCtrees)
## Create the start-stop-event triplet needed for coxph and LTRC trees
first <- with(pbcseq, c(TRUE, diff(id) !=0)) #first id for each subject
last <- c(first[-1], TRUE) #last id
time1 <- with(pbcseq, ifelse(first, 0, day))
time2 <- with(pbcseq, ifelse(last, futime, c(day[-1], 0)))
event <- with(pbcseq, ifelse(last, status, 0))
event <- 1*(event==2)

pbcseq$time1 <- time1
pbcseq$time2 <- time2
pbcseq$event <-  event

## Fit the Cox model and LTRC trees with time-varying covariates
fit.cox <- coxph(Surv(time1, time2, event) ~ age + sex + log(bili), pbcseq)
LTRCIT.fit <- LTRCIT(Surv(time1, time2, event) ~ age + sex + log(bili), pbcseq)
LTRCART.fit <- LTRCART(Surv(time1, time2, event) ~ age + sex + log(bili), pbcseq)

Is it possible to use the same function on a Random Forest using the RandomForestSRC library是否可以使用 RandomForestSRC 库在随机森林上使用相同的功能

library(randomForestSRC)
RF.fit <- rfsrc(Surv(time1, time2, event) ~ age + sex + log(bili), data=pbcseq, nsplit = 3, ntree = 100, importance = TRUE)

Which generates an error:这会产生一个错误:

Error in parseFormula(formula, data, ytry) : 
  Survival formula incorrectly specified.

Wongvibulsin、Wu 和 Zeger(2019 年)的这篇论文扩展了 randomForestSRC 包以处理 TVC,但您可能需要联系作者以获取任何相关代码。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM