首页 > 代码库 > ggplot2 多图排版
ggplot2 多图排版
和R自带的绘图系统不同,ggplot2不能直接通过par(mfrow) 或者 layout()来排版多张图片。终于发现,其实可以通过一个『gridExtra』包来搞定:
require(gridExtra)plot1 <- Make_Smoking_Plot_TCGA("CLDN18", type = "Normal")plot2 <- Make_Smoking_Plot_TCGA("CLDN18", type = "Tumor")plot3 <- Make_Smoking_Plot_TCGA("CLDN18", type = "Tumor", exp_data =http://www.mamicode.com/ Expression_TvN_TCGA_Sel1)plot4 <- Make_Smoking_Plot_TCGA("CLDN18", type = "Tumor", exp_data =http://www.mamicode.com/ Expression_TvN_TCGA_Sel2)plot5 <- Make_Smoking_Plot_TCGA("CLDN18", type = "Tumor", exp_data =http://www.mamicode.com/ Expression_TvN_TCGA_Sel3)plot6 <- Make_Smoking_Plot_TCGA("CLDN18", type = "Tumor", exp_data =http://www.mamicode.com/ Expression_TvN_TCGA_Sel4)grid.arrange(plot1, plot2, plot3, plot4, plot5, plot6, ncol=2)
Reference: http://rstudio-pubs-static.s3.amazonaws.com/2852_379274d7c5734f979e106dcf019ec46c.html
ggplot2 多图排版
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。