Find minimum/maximum depth of a dendrogram
As the name implies. This can also work for non-dendrogram nested lists.
min_depth(dend, ...) max_depth(dend, ...)
dend |
Any nested list object (including dendrogram). |
... |
unused at the moment. |
Integer, the (min/max) number of nodes from the root to the leafs
hc <- hclust(dist(USArrests), "ave") (dend1 <- as.dendrogram(hc)) # "print()" method is.list(dend1) is.list(dend1[[1]][[1]][[1]]) dend1[[1]][[1]][[1]] plot(dend1) min_depth(dend1) max_depth(dend1)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.