as_hclust_fixed | R Documentation |
Convert dendrogram Objects to Class hclust while preserving the call/method/dist.method values of the original hclust object (hc)
as_hclust_fixed(x, hc, ...)
x |
any object which has an as.hclust method. (mostly used for dendrogram) |
hc |
an old hclust object from which to re-use the call/method/dist.method values |
... |
passed to as.hclust |
An hclust object (from a dendrogram) with the original hclust call/method/dist.method values
as.hclust
hc <- hclust(dist(USArrests[1:3, ]), "ave")
dend <- as.dendrogram(hc)
as.hclust(dend)
as_hclust_fixed(dend, hc)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.