varimax package:stats R Documentation _R_o_t_a_t_i_o_n _M_e_t_h_o_d_s _f_o_r _F_a_c_t_o_r _A_n_a_l_y_s_i_s _D_e_s_c_r_i_p_t_i_o_n: These functions 'rotate' loading matrices in factor analysis. _U_s_a_g_e: varimax(x, normalize = TRUE, eps = 1e-5) promax(x, m = 4) _A_r_g_u_m_e_n_t_s: x: A loadings matrix, with p rows and k < p columns m: The power used the target for 'promax'. Values of 2 to 4 are recommended. normalize: logical. Should Kaiser normalization be performed? If so the rows of 'x' are re-scaled to unit length before rotation, and scaled back afterwards. eps: The tolerance for stopping: the relative change in the sum of singular values. _D_e_t_a_i_l_s: These seek a 'rotation' of the factors 'x %*% T' that aims to clarify the structure of the loadings matrix. The matrix 'T' is a rotation (possibly with reflection) for 'varimax', but a general linear transformation for 'promax', with the variance of the factors being preserved. _V_a_l_u_e: A list with components loadings: The 'rotated' loadings matrix, 'x %*% rotmat', of class '"loadings"'. rotmat: The 'rotation' matrix. _R_e_f_e_r_e_n_c_e_s: Hendrickson, A. E. and White, P. O. (1964) Promax: a quick method for rotation to orthogonal oblique structure. _British Journal of Statistical Psychology_, *17*, 65-70. Horst, P. (1965) _Factor Analysis of Data Matrices._ Holt, Rinehart and Winston. Chapter 10. Kaiser, H. F. (1958) The varimax criterion for analytic rotation in factor analysis. _Psychometrika_ *23*, 187-200. Lawley, D. N. and Maxwell, A. E. (1971) _Factor Analysis as a Statistical Method_. Second edition. Butterworths. _S_e_e _A_l_s_o: 'factanal', 'Harman74.cor'. _E_x_a_m_p_l_e_s: ## varimax with normalize = TRUE is the default fa <- factanal( ~., 2, data = swiss) varimax(loadings(fa), normalize = FALSE) promax(loadings(fa))