50% off | Unlimited Data & AI Learning

Last chance! 50% off unlimited learning

Sale ends in


CEGO (version 2.4.4)

distancePermutationManhattan: Manhattan Distance for Permutations

Description

Manhattan distance for permutations, scaled to values between 0 and 1: d(x,y)=1ri=1n|xiyi| where n is the length of the permutations x and y, and scaling factor r=(n21)/2 (if n is odd) or r=((n2)/2 (if n is even).

Usage

distancePermutationManhattan(x, y)

Value

numeric distance value d(x,y), scaled to values between 0 and 1 (based on the maximum possible distance between two permutations)

Arguments

x

first permutation (integer vector)

y

second permutation (integer vector)

Examples

Run this code
x <- 1:5
y <- c(5,1,2,3,4)
distancePermutationManhattan(x,y)
p <- replicate(10,sample(1:5),simplify=FALSE)
distanceMatrix(p,distancePermutationManhattan)

Run the code above in your browser using DataLab