FunnyCoder
FunnyCoder

Reputation: 443

What is the output of PCA and how it is useful?

PCA is a dimensionality reduction algorithm that helps in reducing the dimensions of our data. The thing I haven't understood is that PCA gives an output of eigen vectors in decreasing order such as PC1,PC2,PC3 and so on. So this will become new axes for our data.

Upvotes: 1

Views: 5561

Answers (1)

Mathias
Mathias

Reputation: 173

The idea of PCA is to reduce the dimensions to a subspace created of the n-k eigen vectors with the largest variance, resulting in the largest variance in the data mapped to your new subspace.

Furthermore it is possible to use PCA to reduce your dimensionality without knowing the classes of your training data, meaning it is unsupervised.

Another option, if you know the classes of your training data, is to use LDA which tries to find the feature space that maximize the between class variation.

Upvotes: 1

Related Questions