ggplot2 facet_grid安排面板

时间:2012-08-30 12:59:57

标签: r layout ggplot2

以下示例创建一个ggplot,其中一行包含4个面板“A”,“B”,“C”,“D”。

我想出了如何在一列中绘制这4个面板。然而,仍然是一个谜仍然是如何安排4个面板,使“A”和“B”在第一行,“C”和“D”放在一个单独的(第二)行?

这是我的代码:

df <- data.frame(
x = rep(rep(1:10, each=10), 2),
y = rep(rep(1:10, 20), 2),
grid = rep(LETTERS[1:4], each=100)
)

ggplot(df, aes(x = x, y = y)) +
geom_point() +
facet_grid(. ~ grid, scales = "free")

1 个答案:

答案 0 :(得分:15)

使用facet_wrap代替facet_grid

library(ggplot2)
ggplot(df, aes(x = x, y = y)) +
  geom_point(aes(colour=grid)) +
  facet_wrap(~ grid, scales = "free")

enter image description here