Re: [R] Merge postscript files into ps/pdf

2010-11-15 Thread Patrick Connolly
postscript files into ps/pdf | | I created multiple postscript files using ?postscript. How can I merge | them into a single postscript file using R? How can I merge them into | a single pdf file? | | Thanks a lot, | Ralf | | __ | R-help@r-project.org

Re: [R] Merge postscript files into ps/pdf

2010-11-12 Thread Greg Snow
: Friday, November 12, 2010 12:07 AM To: r-help Mailing List Subject: [R] Merge postscript files into ps/pdf I created multiple postscript files using ?postscript. How can I merge them into a single postscript file using R? How can I merge them into a single pdf file? Thanks a lot, Ralf

Re: [R] Merge postscript files into ps/pdf

2010-11-12 Thread Ralf B
Healthcare greg.s...@imail.org 801.408.8111 -Original Message- From: r-help-boun...@r-project.org [mailto:r-help-boun...@r- project.org] On Behalf Of Ralf B Sent: Friday, November 12, 2010 12:07 AM To: r-help Mailing List Subject: [R] Merge postscript files into ps/pdf I created

Re: [R] Merge postscript files into ps/pdf

2010-11-12 Thread Ralf B
Assuming I would go into the trouble of messing with the existing R scripts that create mentioned postscripts/pdfs, how can I achieve that an array of scripts append to a single ps/pdf? I would want the first script to create the file if it does not yet exist and all other to append to it with new

Re: [R] Merge postscript files into ps/pdf

2010-11-12 Thread Joshua Wiley
On Fri, Nov 12, 2010 at 1:27 PM, Ralf B ralf.bie...@gmail.com wrote: Assuming I would go into the trouble of messing with the existing R scripts that create mentioned postscripts/pdfs, how can I achieve that an array of scripts append to a single ps/pdf? I would want the first script to create

[R] Merge postscript files into ps/pdf

2010-11-11 Thread Ralf B
I created multiple postscript files using ?postscript. How can I merge them into a single postscript file using R? How can I merge them into a single pdf file? Thanks a lot, Ralf __ R-help@r-project.org mailing list

Re: [R] Merge postscript files into ps/pdf

2010-11-11 Thread Joshua Wiley
Hi Ralf, It is easy to make a bunch of graphs in one file (each on its own page), using the onefile = TRUE argument to postscript() or pdf() (depending what type of file you want). I usually use Ghostscript for tinkering with already created postscript or PDF files. To me there is more