ggplot控件中的哪个属性(如果有)
轴文本的宽度(或空白空间)?



在下面的示例中,我的最终目标是“推入”顶部图形的左侧,以使其与底部图形对齐。

我尝试了theme(plot.margin=..),但这会影响整个图的边距。
facet'ing也无济于事,因为y的小数位不同。

作为最后的选择,我意识到我可以修改轴文本本身,但是随后我还需要计算每个图形的切割度。



可重现的示例:

library(ggplot2)
library(scales)

D <- data.frame(x=LETTERS[1:5],  y1=1:5, y2=1:5 * 10^6)

P.base <- ggplot(data=D, aes(x=x)) +
            scale_y_continuous(labels=comma)

Plots <- list(
    short = P.base + geom_bar(aes(y=y1), stat="identity", width=.5)
  , long  = P.base + geom_bar(aes(y=y2), stat="identity", width=.5)
  )

do.call(grid.arrange, c(Plots, ncol=1, main="Sample Plots"))

最佳答案

这是一种解决方案。

这个想法是从“ Having horizontal instead of vertical labels on 2x1 facets and splitting y-label
定义功能

align_plots1 <- function (...) {
    pl <- list(...)
    stopifnot(do.call(all, lapply(pl, inherits, "gg")))
    gl <- lapply(pl, ggplotGrob)
    bind2 <- function(x, y) gtable:::rbind_gtable(x, y, "first")
    combined <- Reduce(bind2, gl[-1], gl[[1]])
    wl <- lapply(gl, "[[", "widths")
    combined$widths <- do.call(grid::unit.pmax, wl)
    grid::grid.newpage()
    grid::grid.draw(combined)
}

short <- P.base + geom_bar(aes(y=y1), stat="identity", width=.5)
long <- P.base + geom_bar(aes(y=y2), stat="identity", width=.5)

#Now, align the plots
align_plots1(short, long)


这是输出。

08-24 14:48