loadings                package:stats                R Documentation

_P_r_i_n_t _L_o_a_d_i_n_g_s _i_n _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:

     Extract or print loadings in factor analysis (or principal
     components analysis).

_U_s_a_g_e:

     loadings(x)

     ## S3 method for class 'loadings':
     print(x, digits = 3, cutoff = 0.1, sort = FALSE, ...)

     ## S3 method for class 'factanal':
     print(x, digits = 3, ...)

_A_r_g_u_m_e_n_t_s:

       x: an object of class '"factanal"' or '"princomp"' or the
          'loadings' component of such an object.

  digits: number of decimal places to use in printing uniquenesses and
          loadings.

  cutoff: loadings smaller than this (in absolute value) are
          suppressed.

    sort: logical. If true, the variables are sorted by their
          importance on each factor.  Each variable with any loading
          larger than 0.5 (in modulus) is assigned to the factor with
          the largest loading, and the variables are printed in the
          order of the factor they are assigned to, then those
          unassigned.

     ...: further arguments for other methods, such as 'cutoff' and
          'sort' for 'print.factanal'.

_S_e_e _A_l_s_o:

     'factanal', 'princomp'

