I have data that looks like this example in the facet_wrap
documentation:
(source: ggplot2.org)
I would like to fill the last facet with the overall view, using all data.
Is there an easy way to add a 'total' facet with facet_wrap
? It's easy to add margins to facet_grid
, but that option does not exist in facet_wrap
.
Note: using facet_grid
is not an option if you want a quadrant as in the plot above, which requires the ncol
or nrow
arguments from facet_wrap
.