Re: [R] postscript window size

2010-11-06 Thread Joshua Wiley
Hi Robert, You need to add paper = "special" to the postscript() call. postscript(file="~/Desktop/figure.ps", horizontal=TRUE, width=20, height=10, paper = "special") plot() ... plot() dev.off() Otherwise it is reset because you are specifying a size outside of what can fit on the

[R] postscript window size

2010-11-06 Thread threshold
Dear R users, simple figure: postscript(file="~/Desktop/figure.ps", horizontal=T, width=20, height=10) par(mfcol=c(2,5)) plot(rnorm(100), type='l') plot(rnorm(100), type='l') plot(rnorm(100), type='l') plot(rnorm(100), type='l') plot(rnorm(100), type='l') ##- plot(rnorm(100), type='l') plot(