Re: [R] How to plot individual pdf files for each wrapped plot with ggplot2?

2014-07-01 Thread Bea GD
Just solved the first problem! I had to generate a plot and then plotted. Now it's saved into pdf. Only the second issue: *2. I don't know how to write the code to get the 8 sex/day combinations.* Thanks! On 01/07/2014 12:59, Bea GD wrote: > Thanks a lot for your reply Trevor! > > I've been wo

Re: [R] How to plot individual pdf files for each wrapped plot with ggplot2?

2014-07-01 Thread Bea GD
Thanks a lot for your reply Trevor! I've been working with the code but I cannot make it work. I have 2 main problems: 1. From running the loop I get pdf files with no pages generated. 2. I don't know how to write the code to get the 8 sex/day combinations. library(ggplot2) library(resha

Re: [R] How to plot individual pdf files for each wrapped plot with ggplot2?

2014-06-30 Thread Trevor Davies
I think the easiest most straight forward way would be to just throw it into a loop and subset the data on each loop around (untested code below but I'm sure you get the gist). ~Trevor sex1<-unique(tips$sex) day1<-unique(tips$day) for (i in 1:length(sex1)){ for (j in 1:length(day1)){ pdf(pas

[R] How to plot individual pdf files for each wrapped plot with ggplot2?

2014-06-30 Thread Bea GD
Hi, I'm working with tips data from reshape package. library(reshape2) I'm saving my plots as pdf and I was wondering whether it was possible to print a different pdf for each 'wrapped' plot. Using the code below as an example, I'd like to get 8 independent pdf files for each sex ~ day co