我使用的网格 lpackage把我的图表,我做GGPLOT2:
library(ggplot2)
library(grid)
Layout <- grid.layout(nrow = 4, ncol = 4,
widths = unit(1, "null"),
heights = unit(c(0.4, 0.8, 1.2, 1.2), c("null", "null", "null")))
grid.show.layout(Layout)
plot1 = ggplot(diamonds, aes(clarity, fill = color)) +
geom_bar() +
facet_wrap(~cut, nrow = 1)
print(plot1 + theme(legend.position = "none"),
vp = viewport(layout.pos.row = 3, layout.pos.col = 1:4))
问题是,我希望把第三排(3,1)的情节 - (3,4),并把传说在(4,4)位置。 不幸的是,我真的不能找到一种方法来创建只是一个传说变量。 我在网上搜索,而我得到的最接近是使用旧+ opts(keep = "legend_box")
但已被弃用。
旧的解决方案 。