毕设过程中安装r包的一些记录
目前还在做毕设,等做完了看能不能来个总结的。
这期记录安装r包的一个技巧。
出现问题如下:
install.packages(“pcaMethods”)
Warning in install.packages :
package ‘pcaMethods’ is not available for this version of R
A version of this package for your version of R might be available elsewhere,
see the ideas at
https://cran.r-project.org/doc/manuals/r-patched/R-admin.html#Installing-packages
解决方法:
根据这个帖子的解决安装r包的方法
if (!requireNamespace("BiocManager", quietly = TRUE))
install.packages("BiocManager")
BiocManager::install("SIMLR")
这里只是初步解决,后续补分析,见谅。