ari {EMMIXmfa} | R Documentation |
Computes adjusted Rand Index
Description
Computes adjusted Rand index.
Usage
ari(cls, hat_cls)
Arguments
cls |
A numeric or character vector of labels. |
hat_cls |
A numeric or character vector of labels same length as |
Details
Measures the agreement between two sets of partitions. The upper bound of 1 implies perfect agreement. The expected value is zero if the partitions are random.
Value
Scaler specifying how closely two partitions agree.
References
Hubert L, and Arabie P (1985). Comparing Partitions. Journal of the Classification 2, 193–218.
See Also
Examples
set.seed(1984)
Y <- scale(iris[, -5])
model <- mfa(Y, g = 3, q = 3, nkmeans = 1, nrandom = 0)
#
ari(model$clust, iris[, 5])
#
minmis(model$clust, iris[, 5])
[Package EMMIXmfa version 2.0.14 Index]