Summary for eco.lmtree output

# S4 method for eco.mlm
summary(object)

# S4 method for eco.mctree
summary(object)

Arguments

object

Output object of eco.lmtree.

Value

A Table with a summary of the analysis for "mlm" analysis, the plot of the trees with significant splits for "mctree" analysis.

See also

eco.lmtree

Examples

# 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 # }