stat841f14

From statwiki
Revision as of 20:39, 14 September 2014 by Eganjido (talk | contribs)
Jump to navigation Jump to search

Editor Sign Up

Data Visualization (Fall 2014)

Principal Components Analysis (PCA) (Lecture: Sep. 10, 2014)

Introduction

Principal Component Analysis (PCA), first invented by Karl Pearson in 1901, is a statistical technique to analyze data. Its main purpose is to reduce the dimensionality. Suppose there is a set of data points in a p-dimensional space, PCA’s goal is to find a linear subspace with lower dimensionality q (q \leq p, such that it contains as many as possible of data points. In another word, PCA aims to reduce the dimensionality of the data, while preserving its information (or minimizing the loss of information). Information comes from variation. If all points have the same value in one dimension, that di

PCA applications

As mentioned, PCA is a method to reduce data dimension if possible to principal components such that those PCs cover as much data variation as possible.

This technique is useful in different type of applications which involve data with a huge dimension like Data pre-processing, neuroscience, Computer graphics, meteorology, oceanography, gene expression, economics, and finance among of all other applications.

Data preprocessing: Data usually are represented by lots of variables. PCA is a technique to select a subset of variables in order to figure our best model for data. In neuroscience, PCA used to identify the specific properties of a stimulus that increase a neuron’s probability of generating an action potential.


Formulation

PCA will result a data set with dimension P, described by n variables, to a smaller set of new variables and dimension Q. The new set of variables is linear combination of the principal components.

x1



[math]\displaystyle{ \ Var(\mathbf{w}^\top \mathbf{x}) = \mathbf{w}^\top S \mathbf{w} }[/math]


[math]\displaystyle{ f_1 }[/math] , [math]\displaystyle{ f_{1x2} }[/math] [math]\displaystyle{ \Sigma = |x_i - \hat{x} |^2 }[/math]

[math]\displaystyle{ U = }[/math] [math]\displaystyle{ x_1 }[/math] , [math]\displaystyle{ x_2 }[/math]


%% U is a combination of x1, x2 in 2-dimensional space