其他分享
首页 > 其他分享> > R语言|ggplot2| 绘制KEGG气泡图

R语言|ggplot2| 绘制KEGG气泡图

作者:互联网

RStudio中使用BiocManager安装包

install.packages("BiocManager")
install.packages("ggplot2")

安装对应版本的Rtools

详细指导说明
安装连接

安装完成后,使用命令安装KEGGREST以及所需要的相关包

BiocManager::install("KEGGREST")
BiocManager::install("fmcsR")
devtools::install_git("https://github.com/cran/RbioRXN.git")

包加载

library(KEGGREST)
library(RbioRXN)

查看KEGG数据库包含的数据
listDatabases()

标签:KEGG,KEGGREST,library,ggplot2,install,BiocManager,安装,气泡
来源: https://www.cnblogs.com/yourenna/p/15510373.html