編輯:
看樣子OP只是希望這樣的:
library(gridExtra)
grid.arrange(p1,arrangeGrob(p2,widths=c(1,2),ncol=2), ncol=1)
我不知道,如果可能的話絕對寬度傳遞給geom_bar
。所以,這裏是一個醜陋的黑客:
set.seed(42)
m <- data.frame(x=1:10,y=runif(10))
p1 <- ggplot(m, aes(x,y)) + geom_bar(stat="identity")
p2 <- ggplot(m[1:3,], aes(x,y)) + geom_bar(stat="identity")
g1 <- ggplotGrob(p1)
g2 <- ggplotGrob(p2)
我用str
找到正確的grob和孩子。如有必要,您可以使用更復雜的方法來推廣這一點。
#store the old widths
old.unit <- g2$grobs[[4]]$children[[2]]$width[[1]]
#change the widths
g2$grobs[[4]]$children[[2]]$width <- rep(g1$grobs[[4]]$children[[2]]$width[[1]],
length(g2$grobs[[4]]$children[[2]]$width))
#copy the attributes (units)
attributes(g2$grobs[[4]]$children[[2]]$width) <- attributes(g1$grobs[[4]]$children[[2]]$width)
#position adjustment (why are the bars justified left???)
d <- (old.unit-g2$grobs[[4]]$children[[2]]$width[[1]])/2
attributes(d) <- attributes(g2$grobs[[4]]$children[[2]]$x)
g2$grobs[[4]]$children[[2]]$x <- g2$grobs[[4]]$children[[2]]$x+d
#plot
grid.arrange(g1,g2)
謝謝,有沒有反正只是爲了縮小圖的寬度 - 使酒吧的寬度和空間不變? – Ali
我不完全確定你想要達到什麼。也許調整比例限制? – Roland
我已經更新了這個問題。我需要酒吧寬度和酒吧之間的空格是相同的兩個情節(所以第二個情節的寬度約爲自動第一.3)。如何調整規模限制可以幫助我實現目標?你有個例子嗎? – Ali