print {REEMtree} | R Documentation |
Print a RE-EM Tree object
Description
This function prints a description of a fitted RE-EM tree object.
Usage
## S3 method for class 'REEMtree'
print(x,...)
Arguments
x |
fitted model of class |
... |
further arguments passed to or from other methods |
Details
This function is a method for the generic function print for class REEMtree
. It can be invoked by calling print for an object of class REEMtree
, or by calling print.REEMtree
directly for an object of the corresponding type.
Side Effects
Prints representations of the regression tree and the random effects model that comprise a RE-EM tree.
Author(s)
Rebecca Sela rsela@stern.nyu.edu
References
Sela, Rebecca J., and Simonoff, Jeffrey S., “RE-EM Trees: A Data Mining Approach for Longitudinal and Clustered Data”, Machine Learning (2011).
See Also
Examples
data(simpleREEMdata)
REEMresult<-REEMtree(Y~D+t+X, data=simpleREEMdata, random=~1|ID)
print(REEMresult)
[Package REEMtree version 0.90.5 Index]