[R] can the pdf output page break be controlled manually?

2009-01-07 Thread Mark Heckmann
I would like to control where to make a page break in my pdf file. The following code renders three pages of output. But I would like to be able to control the page breaks. pdf(file=test.pdf, paper=a4) par(mfrow=c(2,2)) hist(rnorm(100)) hist(rnorm(100)) hist(rnorm(100))

Re: [R] can the pdf output page break be controlled manually?

2009-01-07 Thread jim holtman
Try just leaving off the 'plot.new()'; When you change mfrow it creates a new page. On Wed, Jan 7, 2009 at 5:01 AM, Mark Heckmann mark.heckm...@gmx.de wrote: I would like to control where to make a page break in my pdf file. The following code renders three pages of output. But I would like to

Re: [R] can the pdf output page break be controlled manually?

2009-01-07 Thread Duncan Murdoch
On 1/7/2009 5:01 AM, Mark Heckmann wrote: I would like to control where to make a page break in my pdf file. The following code renders three pages of output. But I would like to be able to control the page breaks. pdf(file=test.pdf, paper=a4) par(mfrow=c(2,2)) hist(rnorm(100))