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.
Where could we apply this new axes to predict the test set data?
We achieved dimensionality reduction from n to some n-k.
- How to get the most useful variables from our data and eliminate the unimportant columns from our data?
- Is there an alternative approach for PCA?