我有一个包含功能的 CSV 文件。行代表对象,列代表特征。我像这样阅读CSV文件
O = csvread('data');
现在我做了一个
[COEFF,SCORE] = princomp(O)
我在 O 上进行 princomp 的目标是执行降维,因为特征数量太大。现在在此操作之后,SCORE 向量是否保留了降维特征集,还是我必须执行更多操作才能获得它?
From the documentation:
[COEFF,SCORE] = princomp(X) returns SCORE, the principal component scores; that is, the representation of X in the principal component space. Rows of SCORE correspond to observations, columns to components.