美文网首页
更新和安装R

更新和安装R

作者: 依然At | 来源:发表于2020-02-26 16:52 被阅读0次

不定时的更新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("GSEABase","GSVA","clusterProfiler" ),ask = F,update = F)
BiocManager::install(c("GEOquery","limma","impute" ),ask = F,update = F)
BiocManager::install(c("genefu","org.Hs.eg.db","hgu133plus2.db" ),ask = F,update = F)

source("https://bioconductor.org/biocLite.R")

library('BiocInstaller')

options(BioC_mirror="https://mirrors.ustc.edu.cn/bioc/") # 修改了镜像

BiocInstaller::biocLite("GEOquery")

BiocInstaller::biocLite(c("limma"))

BiocInstaller::biocLite(c("impute"))

options()$repos
install.packages('WGCNA')
install.packages(c("FactoMineR", "factoextra"))
install.packages(c("ggplot2", "pheatmap","ggpubr"))
library("FactoMineR")
library("factoextra")

library(GSEABase)
library(GSVA)
library(clusterProfiler)
library(genefu)
library(ggplot2)
library(ggpubr)
library(hgu133plus2.db)
library(limma)
library(org.Hs.eg.db)
library(pheatmap)

相关文章

  • 更新和安装R

    不定时的更新R包,会有不时的各种问题 一般 睡一觉,网络好了就好了 rm(list = ls())options(...

  • 学习安装 Bioconductor

    1.R 中安装 2.conda 安装环境 进入R 配置 R 环境下 更新安装R包 安装ggplot2 3、常用安装...

  • R的介绍及安装

    R的介绍R的简介R的优势R的学习方法 R及RStudio的安装R的安装RStudio的安装RStudio的界面 R...

  • R语言的基础环境搭建

    R 语言 安装说明 注意:R 和 RStudio 都要安装。要先安装R,然后安装 RStudio。一、下载安装包 ...

  • 安装代谢组学流程开发所需的软件

    安装R 3.6.1 R x11可以使用了 进入R3.6.1目录 安装软件 安装xcms 安装CAMERA 安装co...

  • R

    1. R安装 conda install r-base #安装R语言 conda install r-string...

  • 《R语言实战》day 1

    第一章 R语言介绍 本章学习:R的安装/Rstudio安装-- 熟悉R语言--运行R程序 1.安装R的详细教程 (...

  • Rstudio中转换R版本后,如何调用R包

    今天遇到一个非常棘手的问题,在用BiocManager安装一个R包clusterProfiler时,需要我把R包更...

  • Redhat6.6离线源码安装R3.4.3

    1. 设置安装路径 (1)R安装路径 R_dir=/opt/R (2)依赖包安装路径 PKGS=/...

  • R和Rstudio的环境依赖

    Rstudio依赖R.所以安装顺序是先安装R,后安装Rstudio.安装路径不要有中文。如果修改了R的默认安装路径...

网友评论

      本文标题:更新和安装R

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