A package for efficient computations of standard clustering comparison measures
Stable version on the CRAN.
install.packages("aricode")The development version is available via:
devtools::install_github("jchiquet/aricode")Computation of measures for clustering comparison (ARI, AMI, NID and
even the adjustedRandIndex of
package mclust) are in
-
$n$ is the size of the vectors the classifications of which are to be compared, -
$u$ and$v$ are the respective number of classes in each vectors.
In aricode we propose an implementation, based on radix sort, that
is in
Importantly, the complexity does not depend on R.
The functions included in aricode are:
(A)RI: computes the (adjusted) Rand indexMARI: computes the modified adjusted rand index as defined in Sundqvist et al, 2023NID: computes the normalized information distanceNMI: computes the normalized mutual informationNVI: computes the the normalized variation informationAMI: computes the adjusted mutual informationChi2: computes the Chi-square statisticsFrobeniuscompute the Frobenius norm between two classification as defined in Arlot et al, 2019entropy: computes the conditional and joint entropiescompare_clustering: computes all clustering comparison measures at oncesort_pairs: radix sort for pairs of elements
Here are some timings to compare the cost of computing the adjusted Rand
Index with aricode or with the commonly used function
adjustedRandIndex of the mclust package: the cost of the latter can
be prohibitive for large vectors:

