Re: [R] export many plots to one file

2007-01-07 Thread Jonne Zutt
Another thing to think about is about each individual scatter plot. Aren't you plotting too much duplicate (x,y) values? You could try to plot only unique values, or even try to filter out points that are very close. __ R-help@stat.math.ethz.ch mailing

Re: [R] export many plots to one file

2007-01-04 Thread Greg Snow
Of bogdan romocea > Sent: Thursday, January 04, 2007 9:35 AM > To: r-help > Subject: [R] export many plots to one file > > Dear useRs, > > I have a few hundred plots that I'd like to export to one document. > pdf() isn't an option, because the file created is >

Re: [R] export many plots to one file

2007-01-04 Thread ONKELINX, Thierry
. ~M.J.Moroney -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Namens bogdan romocea Verzonden: donderdag 4 januari 2007 17:35 Aan: r-help Onderwerp: [R] export many plots to one file Dear useRs, I have a few hundred plots that I'd like to export to one document

[R] export many plots to one file

2007-01-04 Thread bogdan romocea
Dear useRs, I have a few hundred plots that I'd like to export to one document. pdf() isn't an option, because the file created is prohibitively huge (due to scatter plots with many points). So I have to use png() instead, but then I end up with a lot of files (would prefer just one). 1. Is there