我試圖將此溶液(How can I change the size of the strip on facets in a ggplot?1)在ggplot更改條帶大小的面,我有增加高度尺寸編輯條帶大小GGPLOT2
library(ggplot2)
library(gtable)
d <- ggplot(mtcars, aes(x=gear)) +
geom_bar(aes(y=gear), stat="identity", position="dodge") +
facet_wrap(~cyl)
g <- ggplotGrob(d)
g$heights[[3]] = unit(5,"in")
grid.newpage()
grid.draw(g)
爲什麼它的工作方式不同?
較新版本的ggplot2 '有一個徹底改變的方面系統,這就是爲什麼這不再起作用。 – Axeman