Description Usage Arguments Value References See Also Examples
Calculate Adjusted Rand Index measuring the similarity between two clustering labels.
1 | AdjRandIndex(x, y)
|
x |
A vector of class labels |
y |
A vector of class labels to be compared with |
This function returns Adjusted Rand Index between two label vectors x
and y
.
hubert1985comparingMKKC
1 2 3 4 5 6 7 8 9 10 | # true label
x <- rep(1:3, each = 10)
# predicted label
y <- sample(x)
# compare x and y
AdjRandIndex(x, y)
NormMI(x, y)
Purity(x, y)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.