| orderFactors | R Documentation |
Order the columns of a factor loadings matrix in descending order based on the sum of squared factor loadings.
orderFactors(Lambda, PhiMat, salient = 0.29, reflect = TRUE)
Lambda |
(Matrix) Factor loadings matrix to be reordered. |
PhiMat |
(Matrix, NULL) Factor correlation matrix to be reordered. |
salient |
(Numeric) Indicators with loadings < |
reflect |
(Logical) If true, negatively-keyed factors will be reflected. Defaults to reflect = TRUE. |
Returns the sorted factor loading and factor correlation matrices.
Lambda: (Matrix) The sorted factor loadings matrix.
Phi: (Matrix) The sorted factor correlation matrix.
Other Factor Analysis Routines:
BiFAD(),
Box26,
GenerateBoxData(),
Ledermann(),
SLi(),
SchmidLeiman(),
faAlign(),
faEKC(),
faIB(),
faLocalMin(),
faMB(),
faMain(),
faScores(),
faSort(),
faStandardize(),
faX(),
fals(),
fapa(),
fareg(),
fsIndeterminacy(),
print.faMB(),
print.faMain(),
promaxQ(),
summary.faMB(),
summary.faMain()
## Not run:
Loadings <-
matrix(c(.49, .41, .00, .00,
.73, .45, .00, .00,
.47, .53, .00, .00,
.54, .00, .66, .00,
.60, .00, .38, .00,
.55, .00, .66, .00,
.39, .00, .00, .68,
.71, .00, .00, .56,
.63, .00, .00, .55),
nrow = 9, ncol = 4, byrow = TRUE)
fungible::orderFactors(Lambda = Loadings,
PhiMat = NULL)$Lambda
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.