Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我很抱歉问这种问题(可能答案很明显,但我当然不知道):)
我pca在matlab中使用函数。有没有办法知道从哪些变量计算第一个分数?
pca
谢谢!
对于[coeff,scores] = pca(X);,第一个主成分的每个变量的权重是,
[coeff,scores] = pca(X);
coeff(:,1)
每个变量都进入每个主成分的计算(因此,coeff是一个方阵),但一些变量的最终贡献可能非常小。为了找到大的贡献者,find(coeff(:,1)>THRESH).
coeff
find(coeff(:,1)>THRESH)