varimax                 package:mva                 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'.

  rotmat: The `rotation matrix.

_A_u_t_h_o_r(_s):

     B. D. Ripley

_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:

     data(swiss)
     ## varimax with normalize = T is the default
     fa <- factanal( ~., 2, data = swiss)
     varimax(fa$loadings, normalize = FALSE)
     promax(fa$loadings)

