Correlation of Principal Component Scores after Varimax Rotation

조회 수: 5 (최근 30일)
Peter
Peter 2014년 5월 26일
답변: Ayush Aniket 2025년 8월 29일
Hi all:
I'm extracting principal components from time series data and use the varimax rotation to interpret the PCs. In addition, I'd like to compute the rotated scores and use them for further analysis. However, the rotated scores are not uncorrelated anymore, although they should (I think) because the rotation matrix is orthornomal.
Here's a simple example in which I pick two PCs:
load hald [C,S] = pca(zscore(ingredients));
[L,T] = rotatefactors(C(:,1:2)); % L = C(:,1:2)*T
cov(S(:,1:2)*T)
Can anybody help?
Peter

답변 (1개)

Ayush Aniket
Ayush Aniket 2025년 8월 29일
PCA scores are uncorrelated because they come from the eigen-decomposition of the covariance matrix. When you rotate the loadings (e.g. varimax), the rotation matrix is orthogonal, so the axes remain orthogonal, but the scores no longer stay uncorrelated. This is expected as rotation trades uncorrelated scores for more interpretable loadings.
Hence, if you need uncorrelated variables, use the original PC scores, and if you need interpretability, use the rotated ones (and accept correlation).

카테고리

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