Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 934 Bytes

File metadata and controls

10 lines (7 loc) · 934 Bytes

Principle Component Analysis

What is Principle Component Analysis ?

Principal component analysis (PCA) is a statistical procedure that uses an orthogonal transformation to convert a set of observations of possibly correlated variables (entities each of which takes on various numerical values) into a set of values of linearly uncorrelated variables called principal components. This transformation is defined in such a way that the first principal component has the largest possible variance (that is, accounts for as much of the variability in the data as possible), and each succeeding component in turn has the highest variance possible under the constraint that it is orthogonal to the preceding components.[1]

Python Implementation

This repository applies the Principle Component Analysis which are contains the celebrity faces data set.

References

[1] https://en.wikipedia.org/wiki/Principal_component_analysis