文章预览
好久以前(六年前吧),我录制了一个简单的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
………………………………