Promax.only: Promax rotation (without prior Varimax rotation)

Description Usage Arguments Details Value Note Author(s) References See Also Examples

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

1
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

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

HDMD documentation built on May 1, 2019, 8:48 p.m.