美文网首页
conda安装R包

conda安装R包

作者: esroom | 来源:发表于2020-04-04 13:55 被阅读0次
    #先建立一个R3.5环境
    conda create -c R3.5
    #激活该环境
    conda activate R3.5
    #安装R,可以选择R版本,-c表示选择channel。
    conda install -c r r=3.5.1 
    #在下面网站搜索需要R包
    http://bioconda.github.io/index.html
    #安装R包
    conda install bioconductor-deseq2
    #查看已经安装包
    conda list
    #R内查看已经安装的包,得到包名DESeq2,大小写可能与安装时不一样
    installed.packages()
    #加载该R包
    library(DESeq2)
    

    相关文章

      网友评论

          本文标题:conda安装R包

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