美文网首页
R安装R包

R安装R包

作者: 苏牧传媒 | 来源:发表于2018-11-20 18:42 被阅读40次

普通:

install.packages()

以前是:

source("http://bioconductor.org/biocLite.R")

options(BioC_mirror="http://mirrors.ustc.edu.cn/bioc/") #中科大

options(repos=structure(c(CRAN="https://mirrors.tuna.tsinghua.edu.cn/CRAN/")))  #清华

biocLite(pkg_name)

现在:

先安装BiocManager:

chooseCRANmirror()

install.packages("BiocManager")

使用:

BiocManager::install("pkg")

# 命令行直接安装:

sudo R CMD INSTALL xxx.gz

# R本地安装:

install.packages()

# 更新:

library("rvcheck")

rvcheck::update_all()

update.packages( )

R安装R包

相关文章

网友评论

      本文标题:R安装R包

      本文链接:https://www.haomeiwen.com/subject/fcnxqqtx.html