필터 지우기
필터 지우기

Results of PCA function

조회 수: 1 (최근 30일)
Tiago Dias
Tiago Dias 2018년 6월 27일
댓글: Tiago Dias 2018년 6월 28일
Hello, I got some trouble understanding why I get a different result than the PCA function that is incorporated on Matlab. I have uploaded the data that i worked on to get the results
load('X_imputed');
[coeff,score,latent] = pca(X_imputed,'algorithm','eig');
If I got it right, coeff is the Loadings.
I tried to replicate the results on my own, I got the same absolute value that coeff and score, but the signals are different, and I would like to know what I did wrong? or perhaps in my calculation there a sign that is wrong, because i got the absolute valuthe same.
meanX = mean(X_imputed);
Z = (X_imputed-ones(75,1)*mean(X_imputed)); % Centering
covZ = cov(Z); % Covariance
[vec_p,lambda_aux] = eig(covZ);
val_p = diag(lambda_aux);
[lambda,ind_ord] = sort(val_p,'descend');
L1 = vec_p(:,ind_ord); % Loadings
T1 = Z * L1; % Scores
Thanks for your time and help.

답변 (1개)

David Goodmanson
David Goodmanson 2018년 6월 27일
편집: David Goodmanson 2018년 6월 27일
Hi Tiago,
It's good to verify things as you are doing, and I don't believe that there is any problem. The eigenvalues agree. The columns of the coeff matrix (your L1) are normalized eigenvectors with real coefficients. Assuming they should stay real, eigenvectors are still undetermined within a factor of +-1. In this case, coeff and L1 differ by a factor of -1 in columns 2,5,6,7,8. Nothing wrong with that. Accordingly, score and your T1 differ by a factor of -1 in those same columns.
  댓글 수: 1
Tiago Dias
Tiago Dias 2018년 6월 28일
Yeah i guess there is no problem since the absolute value, and + or - is related with the orientation, and a direction has 2 orientation + or -.
I was just curious why it happens because in both cases I use 'eig' algorithm.

댓글을 달려면 로그인하십시오.

카테고리

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