R中安装Y叔神包:yyplot
#首先查看R 版本信息
sessionInfo()
R version 3.6.2 (2019-12-12)
#R版本3.5以上可以安装ggtree 2.0
#安装ggtree,首先需要安装BiocManager
install.packages("BiocManager")
#然后安装ggtree
library(BiocManager)
BiocManager::install("ggtree")
#安装 devtools安装来自github上的包
install.packages("devtools")
#安装yyplot
library(devtools)
install_github("GuangchuangYu/yyplot")
网友评论