Skip to content
Prev 371375 / 398506 Next

Regarding Principal Component Analysis result Interpretation

First, see the example at https://isezen.github.io/PCA/
You want to ?remove variables which are correlated?. Correlated among themselves? If so, why don?t you create a pearson correlation matrix (see ?cor) and define a threshold and remove variables which are correlated according to this threshold? Perhaps I did not understand you correctly, excuse me.

for iris dataset, each component will be as much as correlated with PC1 and remaining part will be correlated PC2 and so on. Hence, you can identify which variables are similar in terms of VARIANCE. You can understand it if you examine the example that I gave above.

In PCA, you can also calculate the correlations between variables and PCs but this shows you how PCs are affected by this variables. I don?t know how you plan to accomplish feature selection process so I hope this helps you. Also note that resources part at the end of example.

isezen