plot {REEMtree} | R Documentation |
Plots the regression tree associated with a RE-EM tree.
plot.REEMtree(x, text = TRUE, ...)
x |
a fitted object of class REEMtree |
text |
if TRUE , the text of the tree will be plotted on the tree automatically. |
... |
further arguments passed to or from other methods |
the coordinates of the nodes are returned as a list, with components x
and y
.
Rebecca Sela rsela@stern.nyu.edu
Sela, Rebecca J., and Simonoff, Jeffrey S., “RE-EM Trees: A New Data Mining Approach for Longitudinal Data”.
data(simpleREEMdata) REEMresult<-REEMtree(Y~D+t+X, data=simpleREEMdata, random=~1|ID, simpleREEMdata$ID) plot(REEMresult)