ggplot
控件中的哪个属性(如果有)
轴文本的宽度(或空白量)?
在下面的例子中,我的最终目标是"推进"顶部图形的左侧,使其与底部图形对齐。
我试过theme(plot.margin=..)
,但这影响了整个情节的边缘
由于y上的比例不同,facet
也没有帮助。
作为最后的手段,我意识到我可以修改轴文本本身,但是我还需要计算每个图形的切割。
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"))
答案 0 :(得分:8)
这是一个解决方案。
这个想法来自“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)
这是输出。