clust_diss {ClustOfVar} | R Documentation |
Calculates the aggregation criterion for two clusters of variables
Description
Calculates the measure of aggregation of two clusters of variables. This measure of aggregation is equal to the decrease in homogeneity for the clusters being merged.
Usage
clust_diss(A, B)
Arguments
A |
a centered and reduced data matrix obtained with the recod function for the first cluster |
B |
a centered and reduced data matrix obtained with the recod function for the second cluster |
Value
The aggregation measure between the two clusters
Examples
data(decathlon)
A <- PCAmixdata::recod(X.quanti=decathlon[1:10,1:5], X.quali=NULL)$Z
B <- PCAmixdata::recod(X.quanti=decathlon[1:10,6:10], X.quali=NULL)$Z
clust_diss(A,B)
[Package ClustOfVar version 1.1 Index]