Re: [R] Output results to a single postscript document

2009-02-07 Thread Mark Difford
Sorry, the message seems to have got botched. Here it is again: Pele does open a PDF device (previously it was a postscript device). It looks like what Pele is trying to do is "plot" the printed results of the summary of a model + the AIC, together with the acf() and pacf() plots. As Dieter ind

Re: [R] Output results to a single postscript document

2009-02-07 Thread Mark Difford
Hi David, Pele: David Winsemius wrote: > >>> I don't see anywhere that you opened a pdf device. When I try : > >>> pdf("test.pdf") and then run your code I get what looks like the >>> desired output sitting in my working directory: > > Pele does open a PDF device (previously it was a postsc

Re: [R] Output results to a single postscript document

2009-02-07 Thread David Winsemius
Sorry. I now see that you did open a pdf device and attached results. So your request is for results of summary and AIC to appear in the pdf output? The plotrix library has functions capable of adding tables or textboxes to plots. The Sweave and odfWeave packages provide a general approach

Re: [R] Output results to a single postscript document

2009-02-07 Thread David Winsemius
I don't see anywhere that you opened a pdf device. When I try : pdf("test.pdf") and then run your code I get what looks like the desired output sitting in my working directory: test.pdf is attached below but my Mac email client sometimes does unexpected (to me anyway) things to graphics att

Re: [R] Output results to a single postscript document

2009-02-07 Thread Pele
Hello R users, Below is the code and output of what I am trying to do. My goal is to insert/print all items in the chart function into a pdf document. Only the acf and pacf charts gets printed. Again, thanks in advance for any help I can get! options (scipe

Re: [R] Output results to a single postscript document

2009-02-07 Thread Mark Difford
Hi Pele, >> I have been trying to output all my results (text, plots, etc) into the >> same postscript file... Surely I missed something? Is it not simply that you are turning off the postscript device in the wrong place? At the moment you only seem to be using the postscript device in the plott

Re: [R] Output results to a single postscript document

2009-02-07 Thread Dieter Menne
Pele yahoo.com> writes: > I have been trying to output all my results (text, plots, etc) into the same > postscript file as > > one document, but have been unable to...Can anyone help me improve my code > below so that I can > > accomplish this? Currently I have to output them separately the

[R] Output results to a single postscript document

2009-02-06 Thread Pele
Hello R users, I have been trying to output all my results (text, plots, etc) into the same postscript file as one document, but have been unable to...Can anyone help me improve my code below so that I can accomplish this? Currently I have to output them separately then piece them back toget