How PCA works
Prev: understanding-principal-component-analysis Next: low-rank-matrix-approximations
Introduction
PCA computes the k-dimensional subspace through the origin for a given data set that minimizes the average squared distance between the points and the subspace. This is the same as maximizing the variance of the projections of the data points on the subspace.
Characterizing Principal Components
The Setup
The input to PCA is -dimensional data points, and a parameter . Assuming the data is centered, so that
Prev: understanding-principal-component-analysis Next: low-rank-matrix-approximations