(Removing all content from page)
 
(18 intermediate revisions by the same user not shown)
Line 1: Line 1:
<br>
 
<center><font size="4"></font>
 
<font size="4">Basics and Examples of Principal Component Analysis (PCA) </font>
 
  
A [https://www.projectrhea.org/learning/slectures.php slecture] by Sujin Jang
 
 
Partly based on the [[2014 Spring ECE 662 Boutin|ECE662 Spring 2014 lecture]] material of [[User:Mboutin|Prof. Mireille Boutin]].
 
</center>
 
----
 
 
----
 
 
== '''Introduction'''  ==
 
 
Principal Component Analysis (PCA) is one of famous techniqeus for dimension reduction, feature extraction, and data visualization. In general, PCA is defined by a transformation of a high dimensional vector space into a low dimensional space. Let's consider visualization of 10-dim data. It is barely possible to effectively show the shape of such high dimensional data distribution. PCA provides an efficient way to reduce the dimensionalty (i.e., from 10 to 2), so it is much easier to visualize the shape of data distribution. PCA is also useful in the modeling of robust classifier where considerably small number of high dimensional training data is provided. By reducing the dimensions of learning data sets, PCA provides an effective and efficient method for data description and classification.
 
 
This lecture is designed to provide a mathematical background of PCA and its applications. First, fundamentals of linear algebra is introduced that will be used in PCA. Technical procedure of PCA will be provided to aid understanding of practical implementation of PCA. Based on the procedure, several examples of PCA will be given in dimension reduction.
 
 
----
 
 
== '''Eigenvectors, Eigenvalues, and Singular Vector Decompositoin''' ==
 
 
To understand mechanism of PCA, it is important to understand some important concepts in linear algebra. In this lecture, we will briefly discuss eigenvectors and eigenvalues of a matrix. Also singular vector decomposition (SVD) will be examined in the extraction of principal components.
 
 
=== <font size="2">Eigenvectors and Eigenvalues</font> ===
 
 
Let define a n-by-n matrix A and a non-zero vector <math>\vec{x}\in\mathbb{R}^{n}</math>. If there exists a scalar value <span class="texhtml">λ</span> which satisfies the vector equation
 
<center><math>A\vec{x}=\lambda\vec{x},</math></center>
 
we define <span class="texhtml">λ</span> as an eigenvalue of the matrix A, and the corresponding non-zero vector <math>\vec{x}</math> is called an eigenvector of the matrix A. To determine eigenvalues and eigenvectors a characteristic equation
 
<center><math>D(\lambda)=det\left(A-\lambda I\right)</math></center>
 
is used. Here is an example of determining eigenvectors and eigenvalues where the matrix A is given by
 
<center><math>
 
A=\left[\begin{matrix}-5 & 2\\
 
2 & -2
 
\end{matrix}\right].
 
</math></center>
 
Then the characteristic equation is given by
 
<center><math>
 
D(\lambda)=\left(-5-\lambda\right)\left(-2-\lambda\right)-4=\lambda^{2}+7\lambda+6=0.
 
</math></center>
 
By solving the quadratic equation for <span class="texhtml">λ</span>, we will have two eigenvalues <span class="texhtml">λ<sub>1</sub> =  − 1</span> and <span class="texhtml">λ<sub>2</sub> =  − 6</span>. By substituting <span class="texhtml">λ'''s''</span> into the vector equation, we can obtain corresponding eigenvectors;
 
<center><math>
 
\lambda_{1}:\;\left(A-\lambda_{1}I\right)\vec{x}=0\Rightarrow\begin{cases}
 
-4x_{1}+2x_{2} & =0\\
 
2x_{1}-x_{2} & =0
 
\end{cases}
 
\Rightarrow\vec{x}_{1}=\left[\begin{matrix}1\\
 
2
 
\end{matrix}\right]
 
</math></center> <center><math>
 
\lambda_{2}:\;\left(A-\lambda_{2}I\right)\vec{x}=0\Rightarrow\begin{cases}
 
x_{1}+2x_{2} & =0\\
 
2x_{1}+4x_{2} & =0
 
\end{cases}
 
\Rightarrow\vec{x}_{2}=\left[\begin{matrix}2\\
 
-1
 
\end{matrix}\right]
 
</math></center>
 
=== <font size="2">Singular Vector Decomposition (SVD)</font> ===
 
 
In the implementation of PCA, singular vector decomposition (SVD) is used to extract principal components (eiegenvectors) from a given data set. Given a n-by-m matrix A, a singular vector decomposition of A is expressed as:
 
<center><span class="texhtml">''A'' = ''U''Σ''V''<sup>''T''</sup></span></center>
 
where <math>U\in\mathbb{R}^{n\times n},\;\Sigma\in\mathbb{R}^{n\times m},\; V\in\mathbb{R}^{m\times m}</math>. The matrix U and V are orthogonal matrices, and consist of left and right singular vectors respectively. The matrix <span class="texhtml">Σ</span> is diagonal and consists of non-negative singular values <span class="texhtml">σ<sub>''i''</sub></span>. The singular values are placed in <span class="texhtml">Σ</span> in descending order such as
 
<center><math>
 
\sigma_{1}\geq\sigma_{2}\geq\cdots\geq\sigma_{p}\geq0\; where\; p=min\left(n,m\right).
 
</math></center>
 
----
 
 
== '''Technical Procedure of PCA'''  ==
 
 
In this section, a brief procedural description of PCA is provided. More detailed theoretical background is directed to BOOK. Assume that we are given by a m-by-n data matrix X consists of n number of m-dim vectors <math>\vec{x}_{i}\in\mathbb{R}^{m}</math>.
 
 
=== <font size="2">Step 1: Compute mean and covariance of data matrix</font> ===
 
 
The covariance matrix of X is called <math>S\in\mathbb{R}^{m\times m}</math> and defined by
 
<center><math>
 
S=\frac{1}{n}\sum_{i=1}^{n}\left(\vec{x}_{i}-\bar{x}\right)\left(\vec{x}_{i}-\bar{x}\right)^{T}
 
</math></center>
 
where <math>\bar{x}\in\mathbb{R}^{m}</math> is the mean of each row in X and defined by
 
<center><math>
 
\bar{x}=\frac{1}{n}\sum_{i=1}^{n}\vec{x}_{i}.
 
</math></center>
 
=== <font size="2">Step 2: SVD</font> ===
 
 
Singular vector decomposition of S is implemented to extract principal components and directions:
 
<center><span class="texhtml">''S'' = ''U''Σ''V''<sup>''T''</sup></span></center>
 
where <math>U\in\mathbb{R}^{n\times n},\;\Sigma\in\mathbb{R}^{n\times m},\; V\in\mathbb{R}^{m\times m}</math>. In the implementation, we use the matrix <math>V=\left[u_{1}u_{2}\cdots u_{m}\right]</math> where a vector <math>u_{i}\in\mathbb{R}^{m}</math> represents a principal component direction.
 
 
=== <font size="2">Step 3: Projection</font> ===
 
 
The data matrix X can be projected into a new matrix <math>Y\in\mathbb{R}^{k\times m}</math> by multiplying a matrix <span class="texhtml">''P''<sup>''T''</sup></span>
 
<center><span class="texhtml">''Y'' = ''P''<sup>''T''</sup>''X''</span></center>
 
where <math>P=\left[\begin{matrix}u_{1}u_{2}\cdots u_{k}\end{matrix}\right],\; k\leq m</math>. Proper number of principal components k should be selected in prior to perform projection of data matrix.
 
 
----
 
 
== '''Examples'''  ==
 
 
=== <font size="2">1. 2D data analysis</font> ===
 
 
In this example, PCA is implemented to project 2-D data <math>X\in\mathbb{R}^{2\times100}</math> on 1-D space (Matlab code is attached above). Figure 1 shows elliptical distribution of X with principal component directions <math>\vec{u}_{1}</math> and <math>\vec{u}_{2}</math>. The principal directions are extracted from covariance matrix of original data set using SVD method:
 
<center><math>
 
V=\left[\begin{matrix}\vec{u}_{1} & \vec{u}_{2}\end{matrix}\right]\in\mathbb{R}^{2\times2}.
 
</math></center>
 
As shown in Figure 2, the data matrix X can be rotated to align principal axes with x and y axis:
 
<center><span class="texhtml">''X''' = ''V''<sup>''T''</sup>''X''</span></center>
 
where X' represents rotated data matrix. In Figure 3 and 4, the matrix X is projected on the primary and secondary principal direction. Euclidean distances between original and projected 2D points are computed and summed up to quantitatively show reliability in data representation. Errors for each principal axis projection are 97.9172 (primary axis) and 223.0955 (secondary axis). As a result of PCA, it is observed that selection of proper eigenvector is important for the effective representation of higher dimensional data with lower dimensions while the loss of information is minimized.
 
 
[[Image:ex_1_raw.png]]
 
[[Image:ex_1_rotated.png]]
 
[[Image:ex_1_primary.png]]
 
[[Image:ex_1_secondary.png]]
 
 
=== <font size="2">2. Image compression</font> ===
 
 
In this example, PCA is applied in the compression of 512-by-512 grey-scale image (Figure 5). The image is represented by a matrix <math>X\in\mathbb{R}^{512\times512}</math>. According to the procedure described in Section 3, principal component directions <math>V\in\mathbb{R}^{512\times512}</math> is extracted. Detailed information on Matlab implementation is referred to (http://people.maths.ox.ac.uk/richardsonm/SignalProcPCA.pdf). Figure 6 depicts the first 30 eigenvalues. By only looking at the eigenvalues, it is hard to judge how many principal components are required to effectively represent the original image without loss of generality. As shown in Figure 8, even though the first three principal components show relatively large eigenvalues, the projected image does not provide clear correspondence to the original image. Figure 7-13 show projection of the original image on new image space defined by different number of principal components. As the number of principal components increases, the projected image becomes visually close to the original image.
 
 
[[Image:ex_2_original.png]]
 
[[Image:ex_2_eigs.png]]
 
[[Image:ex_2_pics.png]]
 
 
=== <font size="2">3. Nonlinear multimodal data distribution</font> ===
 
 
In this section, two examplar cases where PCA fails in data representation. In the first example, circular pattern of 2D data is analyzed using PCA. Figure 12 shows the original circualr 2D data, and Figure 13 and 14 represent projection of the original data on the primary and secondary principal direction.
 
 
The second example is PCA on multi-Gaussian data distribution. Figure 15 depicts the original data distribution, and PCA results using the principal directions are given in Figure 16 and 17. These two examples show limitations of PCA in dimension reduction. When a given data set is not linearly distributed but might be arranged along with non-orthogonal axes or well described by a parameter, PCA could fail to represent and recover original data from projected variables. For example, by only looking at data distribution projected on the principal direction in Figure 13-14 and 16-17, it is almost impossible to find correspondence among different data sets. To resolve these issues, in literature, kernel PCA or statistically independent component analysis (ICA) are employed where PCA fails.
 
 
[[Image:ex_3_circular_raw.png]]
 
[[Image:ex_3_circular_prime.png]]
 
[[Image:ex_3_circular_secondary.png]]
 
[[Image:ex_3_gmm_raw.png]]
 
[[Image:ex_3_gmm_prime.png]]
 
[[Image:ex_3_gmm_secondary.png]]
 
----
 
 
== '''Discussion'''  ==
 
 
In the lecture, we have covered fundamental background in linear algebra for PCA implementation, practical procedure of PCA, and its application with some examples. As observed in the examples, PCA is a simple but effective method to reduce dimensions of linearly distributed data. Image data compression using PCA shows an efficient way to store huge imagery data with reduced dimensions and without loss of generality. However, in general situ, a-prior knowledge of the data shape is strongly required to attain satisfying PCA result. If the given data set is nonlinear or multimodal distribution, PCA fails to provide meaningful data reduction. To incorporate the prior knowledge of data to PCA, researchers have proposed dimension reduction techniques as extensions of PCA such as kernel PCA, multilinear PCA, and independent component analysis (ICA).
 
 
----
 
 
== [[Slecture title of slecture review|Questions and comments]] ==
 
 
If you have any questions, comments, etc. please post them on [[PCA Theory Examples Comment|this page]].
 
 
----
 
 
[[2014 Spring ECE 662 Boutin|Back to ECE662, Spring 2014]]
 
 
[[Category:Slecture]] [[Category:ECE662Spring2014Boutin]] [[Category:ECE]] [[Category:ECE662]] [[Category:Pattern_recognition]]
 

Latest revision as of 12:46, 13 May 2014

Alumni Liaison

Basic linear algebra uncovers and clarifies very important geometry and algebra.

Dr. Paul Garrett