[R] multiple pages with ggplot2 possible?

2013-11-21 Thread Jun Shen
Dear all, This question was asked a few years ago. Back then, the answer was NO. Just wonder if the package has been updated to make it possible. An example (Theoph is a dataset coming with R) ggplot(data=Theoph, aes(x=Time, y=conc)) + geom_point() + facet_wrap(~Subject) gives me all 12

Re: [R] multiple pages with ggplot2 possible?

2013-11-21 Thread Jeff Newmiller
I don't think anything has changed in the fundamental design of ggplot2, so the answer is still no. But you can use some kind of loop (for, or *apply) to generate them sequentially. What do you plan to do with them? Save as jpeg? Append into a pdf? Embed in an Sweave or knitr file?