专栏名称: 生信技能树
生物信息学学习资料分析,常见数据格式及公共数据库资料分享。常见分析软件及流程,基因检测及癌症相关动态。
目录
相关文章推荐
今天看啥  ›  专栏  ›  生信技能树

关于r包安装到哪里了以及如何看自己的r包数量

生信技能树  · 公众号  ·  · 2024-07-28 11:25

文章预览

好久以前(六年前吧),我录制了一个简单的r语言和rstudio软件安装视频,顺手让大家安装一些包试试看,代码如下所: rm(list = ls())  options()$repos  options()$BioC_mirror #options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/") options(BioC_mirror= "http://mirrors.tuna.tsinghua.edu.cn/bioconductor/" ) options( "repos"  = c(CRAN= "https://mirrors.tuna.tsinghua.edu.cn/CRAN/" )) options()$repos  options()$BioC_mirror # https://bioconductor.org/packages/release/bioc/html/GEOquery.html if  (!requireNamespace( "BiocManager" , quietly =  TRUE ))  install.packages( "BiocManager" )  BiocManager::install(c( "GSEABase" , "GSVA" , "clusterProfiler"  ),ask =  F ,update =  F ) BiocManager::install(c( "GEOquery" , "limma" , "impute"  ),ask =  F ,update =  F ) BiocManager::install(c( "org.Hs.eg.db" , "hgu133plus2.db"  ),ask =  F ,update =  F ) options()$repos install.packages( 'WGCNA' ) install.packages(c( "FactoMineR" ,  "fact ………………………………

原文地址:访问原文地址
快照地址: 访问文章快照
总结与预览地址:访问总结与预览