ggplot2で作成したグラフを配置するために、グリッドlpackage を使用しています。
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 行目 (3,1) - (3,4) に配置し、凡例を (4,4) の位置に配置することです。残念ながら、凡例変数だけを作成する方法を実際に見つけることはできません。オンラインで検索したところ、最も近いものは古い
+ opts(keep = "legend_box")
ものを使用していましたが、廃止されました。