| R Documentation | 
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.
print(x)
| x | an object of class  | 
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 | the value set for argument  | 
| 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 | LTRCCIF for a  | 
| 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  | 
ltrccif, ltrcrrf
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.