Summary for eco.lmtree output
# S4 method for eco.mlm summary(object) # S4 method for eco.mctree summary(object)
object | Output object of |
---|
A Table with a summary of the analysis for "mlm" analysis, the plot of the trees with significant splits for "mctree" analysis.
# NOT RUN { data(eco.test) #' mod <- eco.lmtree(DF1 = eco$P, DF2 = eco$E, analysis = "mlm") summary(mod) #summary for "mlm" analysis mod <- eco.lmtree(DF1 = eco$P, DF2 = eco$E, analysis = "mctree", fact = eco$S$structure) summary(mod) #summary for "mctree" analysis # }