| combiTree {mclust} | R Documentation |
The clustering structure
The method implemented in clustCombi can be used for combining Gaussian mixture components for clustering. This provides a hierarchical structure which can be graphically represented as a tree.
combiTree(object, what = c("entropy", "step"),
type = c("triangle", "rectangle"),
edgePar = list(col = "darkgray", lwd = 2),
...)
object |
An object of class |
what |
A string specifying the quantity used to draw the vertical axis. Possible values are |
type |
A string specifying the dendrogram's type. Possible values are |
edgePar |
A list of plotting parameters. See |
... |
Further arguments passed to or from other methods. |
The function always draw a tree and invisibly returns an object of class 'dendrogram' for fine tuning.
L. Scrucca
## Not run: data(Baudry_etal_2010_JCGS_examples) output <- clustCombi(data = ex4.1) combiTree(output) combiTree(output, type = "rectangle") combiTree(output, what = "step") combiTree(output, what = "step", type = "rectangle") ## End(Not run)