31

ggplot2能够使用 中的参数更改多面图之间的panel.margin边距opts。这似乎改变了水平和垂直间距。有没有办法改变水平或垂直的间距而不改变另一个?

结果和期望结果的示例:

mtcars[, c("cyl", "am", "gear")] <- lapply(mtcars[, c("cyl", "am", "gear")], as.factor)

p <- ggplot(mtcars, aes(mpg, wt, group = cyl)) + 
    geom_line(aes(color=cyl)) +
    geom_point(aes(shape=cyl)) + 
    facet_grid(gear ~ am) +
    theme_bw()        

p + opts(panel.margin = unit(1, "lines")) 

所以它目前看起来像:在此处输入图像描述

我们怎样才能让它看起来更像:在此处输入图像描述

4

2 回答 2

41

截至 2015 年 7 月 9 日,panel.margin.xpanel.margin.y似乎已经实施

p <- p + theme(panel.margin.x=unit(0.5, "lines") , panel.margin.y=unit(1,"lines"))

截至 2016 年 12 月 15 日,'panel.spacing' 和 'panel.spacing.x' 在 r 3.3.2 和 ggplot2 2.2.0 中实现

p <- p + theme(panel.spacing.x=unit(0.5, "lines"),panel.spacing.y=unit(1, "lines"))
于 2015-07-09T14:33:23.857 回答
9

在此功能可用之前的手动解决方案:

library(grid)
height <- 0.5 # Vertical spacing
aux <- 1e-5 # Auxiliary number to identify 'height' among other heights
width <- 0.1 # Desirable horizontal spacing

p <- p + theme(panel.margin = unit(height + aux, "lines"))

gtable <- ggplot_gtable(ggplot_build(p))
gtable$widths[sapply(gtable$widths, '[[', 1) == height + aux][[1]][[1]] <- width
grid.draw(gtable)

在此处输入图像描述

于 2013-01-27T17:33:00.393 回答