14

facet_wrapドキュメントに次の例のようなデータがあります。


(出典: ggplot2.org )

すべてのデータを使用して、最後のファセットを全体ビューで埋めたいと思います。

で「合計」ファセットを追加する簡単な方法はありfacet_wrapますか? に余白を追加するのは簡単facet_gridですが、そのオプションは にはありませんfacet_wrap

注:facet_grid上記のプロットのように象限が必要な場合、 using はオプションではありません。これにはncolまたはnrowからの引数が必要facet_wrapです。

4

3 に答える 3

14
library(ggplot2)

p <- qplot(displ, hwy, data = transform(mpg, cyl = as.character(cyl)))
cyl6 <- subset(mpg, cyl == 6)
p + geom_point(data = transform(cyl6, cyl = "7"), colour = "red") +
  geom_point(data = transform(mpg, cyl = "all"), colour = "blue") +
  facet_wrap(~ cyl)

enter image description here

于 2013-09-21T15:15:57.620 に答える
-4

次のように、facet_wrap で「margins」オプションを試すことができます。

library(ggplot2)

p <- qplot(displ, hwy, data = transform(mpg, cyl = as.character(cyl)))
cyl6 <- subset(mpg, cyl == 6)
p + geom_point(data = transform(cyl6, cyl = "7"), colour = "red") +
  facet_wrap(~ cyl, margins=TRUE)
于 2016-03-18T02:07:36.387 に答える