powered by
To calculate the Manhattan distance of two clusters.
mdistance(x, y)
is a numeric vectoror a matrix. It represents the values of a cluster.
Manhattan distance value.
This function is part of the hierarchical clusterization method. The function calculates the Manhattan distance value from x and y.
x
y
# NOT RUN { x <- c(1,2) y <- c(1,3) cluster1 <- matrix(x,ncol=2) cluster2 <- matrix(y,ncol=2) mdistance(x,y) mdistance(cluster1,cluster2) # }
Run the code above in your browser using DataLab