Promax.only {HDMD}R Documentation

Promax rotation (without prior Varimax rotation)

Description

Promax.only is an oblique rotation of factor loadings. This function is directly derived from the Promax function in the psych package, but only performs the promax rotation without first specifying a varimax orthogonal rotation. Further specifying the power of the fitting function allows for greater versatility.

Usage

Promax.only(x, m = 4, rotate.structure=NULL)

Arguments

x matrix of factor loadings
m power of fitting function
rotate.structure rotation matrix if loadings have been prerotated. Default is the identity matrix.

Details

An oblique factor rotation will rescale the loadings with factors having correlated structure Phi

Value

loadings Oblique factor loadings
rotmat Rotation matrix structure. If rotated.structure supplied, it will be factored into rotmat.
Phi Correlation matrix structure of Factors

Note

Adapted directly from Promax of the psych package

Author(s)

Lisa McFerrin

References

Hendrickson, A. E. and White, P. O, 1964, British Journal of Statistical Psychology, 17, 65-70.

See Also

promax, factor.pa.ginv

Examples

##compare to promax and Promax solutions
fa <- factanal( ~., 2, data = swiss)
Promax(loadings(fa))
Promax.only(loadings(fa))


[Package HDMD version 1.0 Index]