大家好,又见面了,我是你们的朋友全栈君。
RStudio需要R 3.0.1+ 下载链接:https://cran.rstudio.com/
下载链接:https://rstudio.com/products/rstudio/download/
下面展示 r包安装代码
rm(list = ls())
options()$repos
options()$BioC_mirror
options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/")
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("KEGG.db",ask = F,update = F)
BiocManager::install(c('airway','DESeq2','edgeR','limma'),ask = F,update = F)
BiocManager::install(c('ALL','CLL','pasilla','clusterProfiler'),ask = F,update = F)
发布者:全栈程序员栈长,转载请注明出处:https://javaforall.cn/153561.html原文链接:https://javaforall.cn