###Load libraries
library(ggplot2)
library(gtable)
###Build plot
d <- ggplot(mtcars, aes(x=gear)) +
geom_bar(aes(y=gear), stat="identity", position="dodge") +
facet_wrap(~cyl)
###Change height of strip text
g <- ggplotGrob(d)
g$heights[[3]] = unit(2,"in")
grid.newpage()
grid.draw(g)
得られた結果 ( ggplot2_2.0.0
)
期待される結果 ( ggplot2_1.0.1
)
質問
ここで中つ国で何が起こっているのですか?