Learn R Programming

CEGO (version 2.4.3)

distanceNumericHamming: Hamming Distance for Vectors

Description

The number of unequal elements of two vectors (which may be of unequal length), divided by the number of elements (of the larger vector).

Usage

distanceNumericHamming(x, y)

Value

numeric distance value $$d(x,y)$$, scaled to values between 0 and 1

Arguments

x

first vector

y

second vector

Examples

Run this code
#e.g., used for distance between bit strings
x <- c(0,1,0,1,0)
y <- c(1,1,0,0,1)
distanceNumericHamming(x,y)
p <- replicate(10,sample(c(0,1),5,replace=TRUE),simplify=FALSE)
distanceMatrix(p,distanceNumericHamming)

Run the code above in your browser using DataLab