标签: r pca
我正在使用pca缩小尺寸。在预测之前是否有必要对新数据进行居中和缩放?
df_pca <- prcomp(df, retx=TRUE, center=TRUE, scale=TRUE) df2_pca <- predict(df_pca,newdata=df_2)