使用牛皮图时,减少图之间的边距

时间:2017-01-24 17:02:33

标签: r ggplot2 cowplot

我想使用cowplot将一些图组合在一起。但我不能改变边距大小。我想只使用一个y轴,但是边距仍然很大,我想减少。我已经使用了ggplot中的plot.margin代码,虽然当我查看单个图时它可以正常工作,但是当组合图时它似乎不起作用。

我做了一些示例代码:

library(ggplot2) 
library(cowplot)

x <- c("a", "b") 
y1 <- c(3,6) 
y2 <- c(10,15) 
data1 <- data.frame(x,y1) 
data2 <- data.frame(x, y2)

ylab1 <- ylab("Very nice y values") 
xlab1 <- xlab("Very nice factors")

plot1 <- ggplot(data1, aes(x=x, y = y1)) +    
geom_bar(stat ="identity", position=position_dodge(), fill = "grey")+  
theme(plot.margin = unit(c(0.5,0.5,0.5,0.5), "cm")) + xlab1 + ylab1
plot1

ylab2 <- ylab("") 
xlab2 <- xlab("Very nice factors") 

plot2 <- ggplot(data2, aes(x=x, y = y2)) +    
geom_bar(stat = "identity",position=position_dodge(), fill = "grey")+   
theme(plot.margin = unit(c(0.5,0.5,0.5,-0.5), "cm")) +    xlab2 + ylab2 
plot2

plot3 <- plot_grid(plot1, plot2, labels = c("A", "B"), align = "hv",nrow = 1, ncol = 2) 

plot3  # Quite large margin between the two plots

我知道我可以通过使用facet来避免这个问题,但是我的真实情节比这个图更复杂。

enter image description here

2 个答案:

答案 0 :(得分:4)

你的plot.margin实际上是在对你不利。将它们设置为零以填充该空白区域。

plot1 <- ggplot(data1, aes(x=x, y = y1)) +    
  geom_bar(stat ="identity", position=position_dodge(), fill = "grey")+  
  theme(plot.margin = unit(c(0,0,0,0), "cm")) + xlab1 + ylab1
plot1

ylab2 <- ylab("") 
xlab2 <- xlab("Very nice factors") 

plot2 <- ggplot(data2, aes(x=x, y = y2)) +    
  geom_bar(stat = "identity",position=position_dodge(), fill = "grey")+   
  theme(plot.margin = unit(c(0,0,0,0), "cm")) +    xlab2 + ylab2 
plot2

plot3 <- plot_grid(plot1, plot2, labels = c("A", "B"), align = "hv",nrow = 1, ncol = 2) 

plot3

enter image description here

答案 1 :(得分:2)

in this issue中也提到了增加plot_grid中各图之间的间距。

另一个有趣的解决方案是建议的in this comment-尝试在两个图之间添加一个额外的空图并调整相对列宽:

plot4 <- plot_grid(plot1, NULL, plot2, rel_widths = c(1, 0, 1), align = "hv",
          labels = c("A", "B"), nrow = 1)
plot4

enter image description here

甚至可以尝试在rel_widths中使用负值,从而获得更好的结果:

plot5 <- plot_grid(plot1, NULL, plot2, rel_widths = c(1, -0.1, 1), align = "hv",
                   labels = c("A", "B"), nrow = 1)
plot5

enter image description here

因此,请尝试调整plot.margin(由@ J.Con回答)并通过调整rel_widths添加额外的空白图。