print {LTRCforests} | R Documentation |
Print Summary Output of a ltrccif object or a ltrcrrf object
Description
Print summary output after a LTRCCIF or a LTRCRRF model is built.
This is the default print method for objects in the class of ltrccif
or
ltrcrrf
.
Usage
print(x)
Arguments
x |
Value
A printout object containing the following components:
Number of (pseudo-subject) observations |
number of left-truncated right-censored pseudo-subject observations based on the Andersen-Gill reformulation. |
Number of subjects |
number of independent subject observations. |
Number of deaths |
number of times that an event occurs in the whole dataset. |
Number of trees |
|
minsplit |
the value set for argument |
minbucket |
the value set for argument |
minprob |
the value set for argument |
maxdepth |
the value set for argument |
No. of variables tried at each split |
number of input variables
randomly sampled as candidates at each node for random forest algorithms,
which is either set as an argument |
Total no. of variables |
the number of features provided in |
Bootstrap type to grow trees |
the values set for augument |
Resampling used to grow trees |
the value set for argument |
Resampling rate used to grow trees |
the values set for argument |
Analysis |
|
Family |
the family used in the analysis, |
Splitting rule |
the splitting rule that is implemented,
conditional inference framework for a |
Number of random split points |
the values set for argument |
See Also
Examples
library(survival)
Formula = Surv(Start, Stop, Event) ~ age + alk.phos + ast + chol + edema
# Built a LTRCCIF forest on the time-varying data by specifying id, with mtry specified:
LTRCCIFobj = ltrccif(formula = Formula, data = pbcsample, id = ID, mtry = 3, ntree = 50L)
print(LTRCCIFobj)
# Built a LTRCCIF forest on the time-invariant data, with resampling, with mtry specified:
LTRCCIFobj = ltrccif(formula = Formula, data = pbcsample, samptype = "swr",
mtry = 3, ntree = 50L)
print(LTRCCIFobj)