

_P_r_i_n_c_i_p_a_l _C_o_m_p_o_n_e_n_t_s _A_n_a_l_y_s_i_s

     prcomp(x=, scale=FALSE, use="all.obs")

     print.prcomp(prcomp.obj)
     plot.prcomp(prcomp.obj)

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

       x: a matrix (or data frame) which provides the data
          for the principal components analysis.

   scale: a logical value indicating whether the variables
          should be scaled to have unit variance before the
          analysis takes place.

     use: the strategy to use for dealing with missing
          observations.  The possible values are
          `"all.obs"', `"complete.obs"', or
          `"pairwise.complete.obs"'.  An unambiguous sub-
          string can be used.

_D_e_s_c_r_i_p_t_i_o_n:

     This function performs a principal components analysis
     on the given data matrix and returns the results as a
     `prcomp' object.  The print method for the these
     objects prints the results in a nice format and the
     plot method produces a scree plot.

_V_a_l_u_e:

     `prcomp' returns an list with class `"prcomp"' contain-
     ing the following components:

     var: the variances of the principal components (i.e.
          the eigenvalues)

    load: the matrix of variable loadings (i.e. a matrix
          whose columns contain the eigenvectors).

   scale: the value of the `scale' argument.

_R_e_f_e_r_e_n_c_e_s:

     Mardia, K. V., J. T. Kent and J. M. Bibby (1979).  Mul-
     tivariate Analysis, London: Academic Press.

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

     `cor', `cov', `eigen'.

_E_x_a_m_p_l_e_s:

     # the variances of the variables in the
     # crimes data vary by orders of magnitude
     data(crimes)
     prcomp(crimes)
     prcomp(crimes,scale=TRUE)

