I have a ggplot2 plot that looks like this:
from the following R code:
ggplot(newdata, aes(benefit, cost, colour = factor(opt), shape = factor(roster)))
+ facet_grid(. ~ location)
It's exactly what I need, except that the graph is too wide to be clearly read.
I'd like to be able to take the four rightmost locations and place them under the four leftmost, such that the scatter plots are ordered like this.
Adelaide Brisbane Cairns Canberra Darwin Hobart Melbourne Sydney
Can I do this with facet_grid()? Or should I just create two plots and line them up in GIMP?
The documentation on facet_grid() doesn't seem to indicate that it's possible.
Thanks for the help :-)