Data set consists of N elements and K variables. Using PCA I can reduce the number of variables, but how to check which from K of variables provided the most informations?
For example I have data set like this:
1 1 1 2
2 2 1 4
3 3 2 11
1 1 2 7
2 2 3 14
3 3 3 16
1 1 4 17
2 2 4 19
3 3 3 16
I know that 1st column is the same like 2nd and 4th column is determined by relation: 2*1st+5*3rd-5. Therefore 1st and 3rd column provide the most informations and rest not provide any additional informations. But how calculate this using PCA ?