ggbiplot以前与prcomp一起使用,现在不会

时间:2019-03-24 06:26:43

标签: r ggbiplot prcomp

ggbiplot过去使用prcomp可以正常工作,但现在没有。我收到的是以下错误代码:

  

plot_label中的错误(p = p,数据= plot.data,标签=标签,标签.label =标签。标签,:     不支持的类:prcomp

我已经使用ggbiplot安装了dependencies=TRUE,并且其他所有与类似问题有关的帖子都已完成,但我仍然收到此消息。

感谢您的帮助。

mypca <- prcomp(mydata, center=TRUE, scale.=TRUE)
ggbiplot(mypca, center=TRUE, scale.=TRUE)
  

plot_label中的错误(p = p,数据= plot.data,标签=标签,标签.label =标签。标签,:     不支持的类:prcomp

2 个答案:

答案 0 :(得分:0)

我认为ggbiplot既没有center也没有scale.参数。您是否将prcompggbiplot函数参数混淆了?

以下工作正常:

library(ggbiplot)
pca <- prcomp(USArrests, center = TRUE, scale. = TRUE)
ggbiplot(pca)

enter image description here

ggbiplot_0.55上进行了测试。

答案 1 :(得分:0)

尝试

ggbiplot::ggbiplot(mypca)