clust_diss2: Dissimilarity between two clusters of variables

View source: R/clust_diss2.R

clust_diss2R Documentation

Dissimilarity between two clusters of variables

Description

Dissimilarity between two clusters of variables when only the covariance/correlation matrix is known.

Usage

clust_diss2(x, A, B)

Arguments

x

a covariance/correlation matrix

A

indices of cluster A

B

indices of cluter B

Value

The dissimilarity between the two clusters

Examples

data(decathlon)
x <- cor(decathlon[,1:10])
A <- c(1,3,4)
B <- c(2,7,10)
clust_diss2(x,A,B)

ClustOfVar documentation built on June 8, 2025, 11:17 a.m.