View source: R/plot-similarity.R
plot_similarity | R Documentation |
Plot similarity objective by cluster
plot_similarity(x, groups)
x |
The data input. Can be one of two structures: (1) A data matrix
where rows correspond to elements and columns correspond to
features (a single numeric feature can be passed as a vector). (2)
An N x N matrix dissimilarity matrix; can be an object of class
|
groups |
A grouping vector of length N, usually the output
of |
Plots the sum of pairwise distances by group.
The diversity (sum of distances) by group.
Martin Papenberg martin.papenberg@hhu.de
diversity_objective
# Match elements and plot similarity by match
N <- 100
lds <- data.frame(f1 = rnorm(N), f2 = rnorm(N))
pairs <- matching(lds, p = 2)
plot_similarity(lds, pairs)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.