factoextra库图例将字符与形状重叠

时间:2018-11-05 23:17:09

标签: r

当我使用factoextra库来绘制通过pca软件包获得的prcomp时,图例看起来很糟糕:

enter image description here

有一个字符a与形状重叠。这是我正在使用的代码:

prcompPCA <- prcomp(t(assay(rld)),
                center = TRUE,
                scale. = TRUE) 

fviz_pca_ind(prcompPCA,
         col.ind = df$Group, # color by groups
         palette = c("#00AFBB",  "#FC4E07"),
         legend.title = "Groups",
         repel = TRUE
)

factoextra软件包的版本号:factoextra_1.0.5。另外:

R version 3.5.1 (2018-07-02)
Platform: x86_64-apple-darwin15.6.0 (64-bit)
Running under: macOS High Sierra 10.13.4

是否有解决此错误的方法?

该错误也被引用在这里:

https://github.com/kassambara/factoextra/issues/14

我尝试运行update.packages("factoextra")或重新加载R会话并运行install.packages("factoextra"),但这没有帮助

0 个答案:

没有答案