View source: R/distinct_edges.R
distinct_edges | R Documentation |
Finds the edges present in the first tree but not in the second
distinct_edges(dend, dend2, ...)
dend |
a dendrogram to find unique edges in |
dend2 |
a dendrogram to compare with |
... |
Ignored. |
A numeric vector of edge ids for the first tree (dend) that are not present in the second tree (dend2).
A dendrogram implementation for distinct.edges from the distory package
distinct_edges, highlight_distinct_edges, dist.dendlist, tanglegram distinct.edges
x <- 1:5 %>%
dist() %>%
hclust() %>%
as.dendrogram()
y <- set(x, "labels", 5:1)
distinct_edges(x, y)
distinct_edges(y, x)
dend_diff(x, y)
# tanglegram(x, y)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.