Learn R Programming

LearnClust (version 1.1)

octileDistanceW.details: To calculate the Octile distance applying weights.

Description

To explain how to calculate the Octile distance between clusters applying weights given.

Usage

octileDistanceW.details(cluster1, cluster2, weight)

Arguments

cluster1

is a cluster.

cluster2

is a cluster.

weight

is a numeric vector.

Value

Octile distance applying weights value. Explanation.

Details

The function calculates the Octile distance value from cluster1 and cluster2, applying weights to the cluster's components.

Examples

Run this code
# NOT RUN {
cluster1 <- matrix(c(1,2),ncol=2)
cluster2 <- matrix(c(1,3),ncol=2)

weight1 <- c(0.4,0.6)
weight2 <- c(2,12)

octileDistanceW.details(cluster1,cluster2,weight1)

octileDistanceW.details(cluster1,cluster2,weight2)

# }

Run the code above in your browser using DataLab