如何在R中制作没有标签的双标图

时间:2015-02-09 15:06:41

标签: r

我用过

biplot(prcomp(data, scale.=T), xlabs=rep("·", nrow(data)))

但省略标签无效。 即使我删除标签,我的情节也是如此混乱和丑陋,可以在下面看到! 我还需要显示轴上PC的百分比 enter image description here

我使用以下命令绘制图像

biplot(prcomp(data, scale.=T), xlabs=rep("·", nrow(data)), ylabs = rep("·", ncol(data)))

1 个答案:

答案 0 :(得分:1)

试试这个

\devtools::install_github("sinhrks/ggfortify")
library(ggfortify)
ggplot2::autoplot(stats::prcomp(USArrests, scale=TRUE), label = FALSE, loadings.label = TRUE)

enter image description here