Learn R Programming

BifactorIndicesCalculator (version 0.2.2)

FD: Factor Determinacy

Description

FD computes factor determinacies for all factors provided standardized factor loadings and an interfactor correlation matrix.

Usage

FD(Lambda, Phi)

Arguments

Lambda

is a matrix of standardized factor loadings

Phi

is the matrix of factor intercorrelations. For bifactor models Phi is diagonal with ones on the diagonal.

Value

a vector of factor determinacies.

Details

FD is called by bifactorIndices and the various convenience functions for exploratory models and/or Mplus output, which are the only functions in this package intended for casual users.

See Also

bifactorIndices

Examples

Run this code
# NOT RUN {
Lambda <- matrix(c(.82, .10,   0,   0,
                   .77, .35,   0,   0,
                   .79, .32,   0,   0,
                   .66, .39,   0,   0,
                   .51,   0, .71,   0,
                   .56,   0, .43,   0,
                   .68,   0, .13,   0,
                   .60,   0, .50,   0,
                   .83,   0,   0, .47,
                   .60,   0,   0, .27,
                   .78,   0,   0, .28,
                   .55,   0,   0, .75),
                   ncol = 4, byrow = TRUE)
Phi <- matrix(c(1, 0, 0, 0,
                0, 1, 0, 0,
                0, 0, 1, 0,
                0, 0, 0, 1), ncol = 4)
colnames(Lambda) <- c("General", "SF1", "SF2", "SF3")
FD(Lambda, Phi)

# }

Run the code above in your browser using DataLab