
get attributes from the dendrogram's root(!) branches
get_root_branches_attr(dend, the_attr, warn = dendextend_options("warn"), ...)
The attributes of the branches (often two) of the dendrogram's root
dendrogram object
the attribute to get from the branches (for example "height")
logical (default from dendextend_options("warn") is FALSE). Set if warning are to be issued, it is safer to keep this at TRUE, but for keeping the noise down, the default is FALSE. Should a warning be printed when the function is used on an object which is NOT a dendrogram.
passed on to attr
hc <- hclust(dist(USArrests[2:9, ]), "com")
dend <- as.dendrogram(hc)
get_root_branches_attr(dend, "height") # 0.00000 71.96247
# plot(dend)
str(dend, 2)
Run the code above in your browser using DataLab