Why after programming the coeff of the dataset, I get only part of the coeff of the dataset?
1 回表示 (過去 30 日間)
古いコメントを表示
There is a 20*7 dataset and i try to get the coeff of it. But after I run the program, the output only provides me with a 7*7 coeff array.
[coeff, score, latent, tsquared, explained] = pca(mArray);
coeffArray = coeff;
0 件のコメント
採用された回答
Adam Danz
2020 年 8 月 25 日
From the documentation:
coeff = pca(X) returns the principal component coefficients, also known as loadings, for the n-by-p data matrix X. Rows of X correspond to observations and columns correspond to variables. The coefficient matrix is p-by-p.
In your case, your data are 20*7 and the output is 7*7 as expected.
If you were expecting 20 coefficients, transpose the input.
[. . .] = pca(mArray.');
See the link above for a detailed explanation of the output and several examples.
0 件のコメント
その他の回答 (0 件)
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!