OOB.rfshape {DynForest} | R Documentation |
Compute the Out-Of-Bag error on the random survival forest
Description
Compute the Out-Of-Bag error on the random survival forest
Usage
OOB.rfshape(
rf,
Longitudinal = NULL,
Numeric = NULL,
Factor = NULL,
Y,
timeVar = NULL,
IBS.min = 0,
IBS.max = NULL,
cause = 1,
ncores = NULL
)
Arguments
rf |
Trees object resulting from |
Longitudinal |
A list of longitudinal predictors which should contain: |
Numeric |
A list of numeric predictors which should contain: |
Factor |
A list of factor predictors which should contain: |
Y |
A list of output which should contain: |
timeVar |
A character indicating the name of time variable |
IBS.min |
(Only with survival outcome) Minimal time to compute the Integrated Brier Score. Default value is set to 0. |
IBS.max |
(Only with survival outcome) Maximal time to compute the Integrated Brier Score. Default value is set to the maximal time-to-event found. |
cause |
(Only with competing events) Number indicates the event of interest. |
ncores |
Number of cores used to grow trees in parallel. Default value is the number of cores of the computer-1. |