美文网首页
【复制代码】R包安装

【复制代码】R包安装

作者: 谢俊飞 | 来源:发表于2019-12-31 19:12 被阅读0次

Copy these words , mainly to copy the code for your own use
R包的安装:

  1. 对普通的R包,直接install.packages()即可
  2. 对于bioconductor的包,我们一般是
if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("PANR")

相关文章

网友评论

      本文标题:【复制代码】R包安装

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