How to apply The Kaiser rule in PCA?

조회 수: 11 (최근 30일)
MUHAMMAD ALKHUDAYDI
MUHAMMAD ALKHUDAYDI 2019년 12월 11일
편집: Shubh Sahu 2020년 1월 30일
Hi,
In MATLAB there is a bulid function to apply principle component analysis PCA. However, I have a problem on applying The Kaiser rule which drop all components with eigenvalues under 1. For Example I want to apply this method on the data:
X = [1 2 3 4 5 ; -1 -3 -1 2 4 ; -2 1.5 3 2 -9 ; 1 -1 0.25 2.3 2.2];
[coeff,newdata,latend,tsd,variance] = pca(X)
Please can some one help me on this. Many thanks.

채택된 답변

Shubh Sahu
Shubh Sahu 2020년 1월 30일
편집: Shubh Sahu 2020년 1월 30일
Hey!
Instead of calculating PCA go with SVD. Take under the under root of sigmas 's' and now you have eigenvalues. Check for kaiser rule and select the column with eigenvalue less than 1
X = [1 2 3 4 5 ; -1 -3 -1 2 4 ; -2 1.5 3 2 -9 ; 1 -1 0.25 2.3 2.2];
[u,s,v] = svd(X)
Please refer to this link for further information

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Dimensionality Reduction and Feature Extraction에 대해 자세히 알아보기

태그

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by