Education
 

Principal components analysis

From Psychology Wiki

Community portal · Tasks to do · News · Help

Clinical · Educational · Ind&Org · Other fields · Professional · Transpersonal · World

Assessment | Biopsychology | Comparative | Cognitive | Developmental | Language
Personality | Philosophy | Research Methods | Social | Statistics

Statistics: Scientific method · Research methods · Experimental design · Undergraduate statistics courses · Statistical tests · Game theory · Decision theory


Principal components analysis (PCA) is a technique used to reduce multidimensional data sets to lower dimensions for analysis. Depending on the field of application, it is also named the discrete Karhunen-Loève transform (or KLT, named after Kari Karhunen and Michel Loève), the Hotelling transform (in honor of Harold Hotelling), or proper orthogonal decomposition (POD).

Applications include exploratory data analysis data and for generating predictive models. PCA involves the computation of the eigenvalue decomposition or Singular value decomposition of a data set, usually after mean centering the data for each attribute. The results of a PCA are usually discussed in terms of scores and loadings.

Contents

[edit] Details

PCA is mathematically defined as an orthogonal linear transformation that transforms the data to a new coordinate system such that the greatest variance by any projection of the data comes to lie on the first coordinate (called the first principal component), the second greatest variance on the second coordinate, and so on.

PCA can be used for dimensionality reduction in a data set by retaining those characteristics of the data set that contribute most to its variance, by keeping lower-order principal components and ignoring higher-order ones. Such low-order components often contain the "most important" aspects of the data. But this is not necessarily the case, depending on the application.

For a data matrix, XT, with zero empirical mean (the empirical mean of the distribution has been subtracted from the data set), where each row represents a different repetition of the experiment, and each column gives the results from a particular probe, the PCA transformation is given by:

math
math

where V Σ WT is the singular value decomposition (svd) of XT.

In this article we shall adopt the other convention, so that each column is made up of results for a different subject, and each row the results from a different probe. This will mean that the PCA for our data matrix X will be given by:

math
math

where W Σ VT is the svd of X.

PCA has the distinction of being the optimal linear transformation for keeping the subspace that has largest variance. This advantage, however, comes at the price of greater computational requirement if compared, for example, to the discrete cosine transform. Unlike other linear transforms, PCA does not have a fixed set of basis vectors. Its basis vectors depend on the data set.

[edit] Discussion

Assuming zero empirical mean (the empirical mean of the distribution has been subtracted from the data set), the principal component w1 of a data set x can be defined as:

math

(See arg max for the notation.) With the first math components, the math-th component can be found by subtracting the first math principal components from x:

math

and by substituting this as the new data set to find a principal component in

math

The Karhunen-Loève transform is therefore equivalent to finding the singular value decomposition of the data matrix X,

math

and then obtaining the reduced-space data matrix Y by projecting X down into the reduced space defined by only the first L singular vectors, WL:

math

The matrix W of singular vectors of X is equivalently the matrix W of eigenvectors of the matrix of observed covariances C = X XT,

math

The eigenvectors with the largest eigenvalues correspond to the dimensions that have the strongest correlation in the data set (see Rayleigh quotient).

PCA is equivalent to empirical orthogonal functions (EOF).

An autoencoder neural network with a linear hidden layer is also equivalent to PCA. Upon convergence, the weight vectors of the K neurons in the hidden layer will form a basis for the space spanned by the first K principal components. Unlike PCA, this technique will not necessarily produce orthogonal vectors.

PCA is a popular technique in pattern recognition. But it is not optimized for class separability[1]. An alternative is the linear discriminant analysis, which does take this into account. PCA optimally minimizes reconstruction error under the L2 norm.

[edit] Table of symbols and abbreviations

Symbol Meaning Dimensions Indices
math data matrix, consisting of the set of all data vectors, one vector per column math math
math
math the number of column vectors in the data set math scalar
math the number of elements in each column vector (dimension) math scalar
math the number of dimensions in the dimensionally reduced subspace, math math scalar
math vector of empirical means, one mean for each row m of the data matrix math math
math vector of empirical standard deviations, one standard deviation for each row m of the data matrix math math
math vector of all 1's math math
math deviations from the mean of each row m of the data matrix math math
math
math z-scores, computed using the mean and standard deviation for each row m of the data matrix math math
math
math covariance matrix math math
math
math correlation matrix math math
math
math matrix consisting of the set of all eigenvectors of C, one eigenvector per column math math
math
math diagonal matrix consisting of the set of all eigenvalues of C along its principal diagonal, and 0 for all other elements math math
math
math matrix of basis vectors, one vector per column, where each basis vector is one of the eigenvectors of C, and where the vectors in W are a sub-set of those in V math math
math
math matrix consisting of N column vectors, where each vector is the projection of the corresponding data vector from matrix X onto the basis vectors contained in the columns of matrix W. math math
math

[edit] Algorithm #1: the covariance method

Following is a detailed description of PCA using the covariance method. The goal is to transform a given data set X of dimension M to an alternative data set Y of smaller dimension L. Equivalently, we are seeking to find the matrix Y, where Y is the Karhunen-Loeve transform (KLT) of matrix X:

math

[edit] Organize the data set

Suppose you have data comprising a set of observations of M variables, and you want to reduce the data so that each observation can be described with only L variables, L < M. Suppose further, that the data are arranged as a set of N data vectors math with each math representing a single grouped observation of the M variables.

  • Write math as column vectors, each of which has M rows.
  • Place the column vectors into a single matrix X of dimensions M × N.

[edit] Calculate the empirical mean

  • Find the empirical mean along each dimension m = 1...M.
  • Place the calculated mean values into an empirical mean vector u of dimensions M × 1.
math

[edit] Calculate the deviations from the mean

  • Subtract the empirical mean vector u from each column of the data matrix X.
  • Store mean-subtracted data in the M × N matrix B.
math
where h is a 1 x N row vector of all 1's:
math

[edit] Find the covariance matrix

  • Find the M × M empirical covariance matrix C from the outer product of matrix B with itself:
math
where
math is the expected value operator,
math is the outer product operator, and
math is the conjugate transpose operator. Note that if B consists entirely of real numbers, which is the case in many applications, the "conjugate transpose" is the same as the regular transpose.
  • Please note that the information in this section is indeed a bit fuzzy. See the covariance matrix sections on the discussion page for more information.

[edit] Find the eigenvectors and eigenvalues of the covariance matrix

math
where D is the diagonal matrix of eigenvalues of C. This step will typically involve the use of a computer-based algorithm for computing eigenvectors and eigenvalues. These algorithms are readily available as sub-components of most matrix algebra systems, such as MATLAB, Mathematica, SciPy, or IDL(Interactive Data Language). See, for example, the eig function.
math
is the mth eigenvalue of the covariance matrix C, and
math
  • Matrix V, also of dimension M × M, contains M column vectors, each of length M, which represent the M eigenvectors of the covariance matrix C.
  • The eigenvalues and eigenvectors are ordered and paired. The mth eigenvalue corresponds to the mth eigenvector.

[edit] Rearrange the eigenvectors and eigenvalues

  • Sort the columns of the eigenvector matrix V and eigenvalue matrix D in order of decreasing eigenvalue.
  • Make sure to maintain the correct pairings between the columns in each matrix.

[edit] Compute the cumulative energy content for each eigenvector

  • The eigenvalues represent the distribution of the source data's energy among each of the eigenvectors, where the eigenvectors form a basis for the data. The cumulative energy content g for the mth eigenvector is the sum of the energy content across all of the eigenvectors from 1 through m:
math

[edit] Select a subset of the eigenvectors as basis vectors

  • Save the first L columns of V as the M × L matrix W:
math
where
math
  • Use the vector g as a guide in choosing an appropriate value for L. The goal is to choose as small a value of L as possible while achieving a reasonably high value of g on a percentage basis. For example, you may want to choose L so that the cumulative energy g is above a certain threshold, like 90 percent. In this case, choose the smallest value of L such that
WikiTeX: latex reported a failure, namely:
This is pdfeTeX, Version 3.141592-1.21a-2.2 (Web2C 7.5.4)

entering extended mode (./863fb3fe74a68ca2834731c58f3df LaTeX2e <2003/12/01> Babel and hyphenation patterns for american, french, german, ngerman, b ahasa, basque, bulgarian, catalan, croatian, czech, danish, dutch, esperanto, e stonian, finnish, greek, icelandic, irish, italian, latin, magyar, norsk, polis h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur kish, ukrainian, nohyphenation, loaded. (/usr/share/texmf/tex/latex/base/article.cls Document Class: article 2004/02/16 v1.4f Standard LaTeX document class (/usr/share/texmf/tex/latex/base/size10.clo)) (/usr/share/texmf/tex/latex/amsfonts/amssymb.sty (/usr/share/texmf/tex/latex/amsfonts/amsfonts.sty)) (/usr/share/texmf/tex/latex/amsmath/amsmath.sty For additional information on amsmath, use the `?' option. (/usr/share/texmf/tex/latex/amsmath/amstext.sty (/usr/share/texmf/tex/latex/amsmath/amsgen.sty)) (/usr/share/texmf/tex/latex/amsmath/amsbsy.sty) (/usr/share/texmf/tex/latex/amsmath/amsopn.sty)) (/usr/share/texmf/tex/latex/amsmath/amscd.sty) (/usr/share/texmf/tex/latex/concmath/concmath.sty) (./863fb3fe74a68ca2834731c58f3df.aux) (/usr/share/texmf/tex/latex/concmath/ot1ccr.fd) (/usr/share/texmf/tex/latex/concmath/omlccm.fd) (/usr/share/texmf/tex/latex/concmath/omsccsy.fd) (/usr/share/texmf/tex/latex/concmath/omxccex.fd) (/usr/share/texmf/tex/latex/amsfonts/umsa.fd) (/usr/share/texmf/tex/latex/amsfonts/umsb.fd)

! LaTeX Error: \begin{equation*} on input line 5 ended by \end{document}.

See the LaTeX manual or LaTeX Companion for explanation. Type H for immediate help.

...                                              
                                                 

l.6 \end{document}

! Missing $ inserted.

               $

l.6 \end{document}

! Display math should end with $$.

                  \par 

l.6 \end{document}

[1] (./863fb3fe74a68ca2834731c58f3df.aux) ) (\end occurred inside a group at level 1)

      1. semi simple group (level 1) entered at line 5 (\begingroup)
      2. bottom level

(see the transcript file for additional information) Output written on 863fb3fe74a68ca2834731c58f3df.dvi (1 page, 324 bytes).

Transcript written on 863fb3fe74a68ca2834731c58f3df.log.

[edit] Convert the source data to z-scores

  • Create an M × 1 empirical standard deviation vector s from the square root of each element along the main diagonal of the covariance matrix C:
math
  • Calculate the M × N z-score matrix:
math (divide element-by-element)
  • Note: While this step is useful for various applications as it normalizes the data set with respect to its variance, it is not integral part of PCA/KLT!

[edit] Project the z-scores of the data onto the new basis

  • The projected vectors are the columns of the matrix
math
  • The columns of matrix Y represent the Karhunen-Loeve transforms (KLT) of the data vectors in the columns of matrix X.

[edit] Algorithm #2: the correlation method

Editor's note: This section is currently undergoing a major revision. See page history for previous revisions.

[edit] Derivation of PCA using the covariance method

Let X be a d-dimensional random vector expressed as column vector. Without loss of generality, assume X has zero empirical mean. We want to find a math orthonormal transformation matrix P such that

math

with the constraint that

math is a diagonal matrix and math

By substitution, and matrix algebra, we obtain:

math

We now have:

math

Rewrite P as d math column vectors, so

math

and math as:

math

Substituting into equation above, we obtain:

math

Notice that in math, Pi is an eigenvector of X′s covariance matrix. Therefore, by finding the eigenvectors of X′s covariance matrix, we find a projection matrix P that satisfies the original constraints.

[edit] Relation to K-means clustering

It has been shown recently [2] [3] that the relaxed solution of K-means clustering, specified by the cluster indicators, are given by the PCA (principal component analysis) principal components, and the PCA subspace spanned by the principal directions is identical to the cluster centroid subspace specified by the between-class scatter matrix.

[edit] Correspondence analysis

Correspondence analysis is conceptually similar to PCA, but scales the data (which must be positive) so that rows and columns are treated equivalently. It is traditionally applied to contingency tables where Pearson's chi-square test has shown a relationship between rows and columns.

[edit] Software/source code

[edit] References

  1. "Introduction to Statistical Pattern Recognition." [1]
  2. H. Zha, C. Ding, M. Gu, X. He and H.D. Simon. "Spectral Relaxation for K-means Clustering", Neural Information Processing Systems vol.14 (NIPS 2001). pp. 1057-1064, Vancouver, Canada. Dec. 2001.
  3. Chris Ding and Xiaofeng He. "K-means Clustering via Principal Component Analysis". Proc. of Int'l Conf. Machine Learning (ICML 2004), pp 225-232. July 2004.

[edit] See also

[edit] External links


Smallwikipedialogo.png This page uses content from the English-language version of Wikipedia. The original article was at Principal components analysis. The list of authors can be seen in the page history. As with Psychology Wiki, the text of Wikipedia is available under the GNU Free Documentation License.