View source: R/oblique_survival_forest_predict.R
predict.orsf | R Documentation |
Compute predictions using an oblique random survival forest.
## S3 method for class 'orsf' predict(object, newdata, times, ...)
object |
An object fitted using the ORSF function. |
newdata |
A data frame containing observations to predict. |
times |
A vector of times in the range of the response variable, e.g. times when the response is a survival object, at which to return the survival probabilities. |
... |
Other arguments passed to or from other functions. |
A matrix of survival probabilities containing 1 row for each observation and 1 column for each value in times.
data("pbc",package='survival') pbc$status[pbc$status>=1]=pbc$status[pbc$status>=1]-1 pbc$id=NULL fctrs<-c('trt','ascites','spiders','edema','hepato','stage') for(f in fctrs)pbc[[f]]=as.factor(pbc[[f]]) pbc=na.omit(pbc) orsf=ORSF(data=pbc,ntree=5) times=seq(365, 365*4,length.out = 10) predict(orsf,newdata=pbc[c(1:5),],times=times)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.