distCayley {Rankcluster} | R Documentation |
The Cayley distance between two ranks x and y is the minimum number of transpositions required to transform the ranking x into y.
distCayley(x, y)
x , y |
two ranks of size m. |
the Cayley distance between x and y.
Julien Jacques
Other distance:
distHamming()
,
distKendall()
,
distSpearman()
x <- 1:5
y <- c(2, 3, 1, 4, 5)
distCayley(x, y)