fitted.REEMtree {REEMtree} | R Documentation |
Extract the fitted values from a RE-EM tree
Description
This function extracts the fitted values from the LME object underlying the RE-EM tree. The fitted values are the fixed effects (from the tree) plus the estimated contributions of the random effects to the fitted values at grouping levels less or equal to the level given.
Usage
## S3 method for class 'REEMtree'
fitted(object, level, asList, ...)
Arguments
object |
an object of class |
level |
the level of random effects used in creating fitted values. Level 0 is fixed effects; levels increase with the grouping of random effects. Default is the highest level. |
asList |
an optional logical value. If |
... |
some methods for this generic require additional arguments; none are used here. |
Value
If the level is a single value, the result is a vector or list (depending on asList
) with the fitted values. Otherwise, the result is a data frame with columns given by the fitted values at different levels.
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)
fitted(REEMresult)