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.
我注意到 R 中有一些东西,比如pc将 PCA 应用于数据矩阵的结果,并且 pc$x是我的样本主成分矩阵。
pc
pc$x
当 try 时plot(pc$x),它只会绘制第一个主成分 ( pc1) 与第二个 ( pc2),但我实际上有超过 2 个主成分。我如何显示所有这些?
plot(pc$x)
pc1
pc2
单个图中的所有组合:
pairs(pc$x)
要选择特定组合,只需使用:
plot(pc$x[, c(1,3)]) # e.g. pc1 and pc3