包‘ggbiplot’不可用(对于 R 版本 3.5.3)?

package ‘ggbiplot’ is not available (for R version 3.5.3)?

install.packages 中的警告:

包“ggbiplot”不可用(对于 R 版本 3.5.3)

尝试了我找到的所有选项来安装这个包。这个版本的 R 不可用吗?我有其他方法可以在我的 RStudio 上使用 ggbiplot 吗?

根据其存储库的 README.md under Installation,您需要

library(devtools)
install_github("vqv/ggbiplot")

编辑: 根据您的评论,我 运行 现在在 r-base 的新 Docker 容器中。它工作顺利:

> library(devtools)                         
> install_github("vqv/ggbiplot")                                              
Downloading GitHub repo vqv/ggbiplot@master  
[...stuff deleted here for brevity...]
* installing *source* package ‘ggbiplot’ ...
** R
** data
** byte-compile and prepare package for lazy loading
** help
*** installing help indices
** building package indices
** testing if installed package can be loaded
* DONE (ggbiplot)
>

所以它像我声称的那样工作。在这两者之间,它需要另一个小的转移,因为这个包显然不是 tinyverse 的一部分,要么需要所有这些:

Installing 10 packages: colorspace, ggplot2, gtable, labeling, 
munsell, plyr, RColorBrewer, reshape2, scales, viridisLite

尽管如此,最初的建议 与承诺的一样。

先试试这个,对我有用

install_github("vqv/ggbiplot")
Sys.setenv(R_REMOTES_NO_ERRORS_FROM_WARNINGS="true")
install_github("vqv/ggbiplot")