Learn R Programming

rrcov3way (version 0.1-10)

congruence: Coefficient of factor congruence (phi)

Description

Computes the Tucker's congruence (phi) coefficients among two sets of factors.

Usage

congruence(x, y=NULL)

Arguments

x

A vector or matrix of factor loadings

y

A vector or matrix of factor loadings (may be empty)

Value

A matrix of factor congruences.

Details

Find the Tucker's coefficient of congruence between two sets of factor loadings.

Factor congruences are the cosines of pairs of vectors defined by the loadings matrix and based at the origin. Thus, for loadings that differ only by a scaler (e.g. the size of the eigen value), the factor congruences will be 1.

For factor loading vectors of X and Y the measure of factor congruence, phi, is $$ \phi = \frac{\sum X Y}{\sqrt{\sum(X^2)\sum(Y^2)}} .$$

References

L.R Tucker (1951). A method for synthesis of factor analysis studies. Personnel Research Section Report No. 984. Department of the Army, Washington, DC.

Examples

Run this code
# NOT RUN {
X <- getLoadings(PcaClassic(delivery))
Y <- getLoadings(PcaHubert(delivery, k=3))
round(congruence(X,Y),3)
# }

Run the code above in your browser using DataLab