Re: [R] using postscript() for multiple individual files

2014-07-19 Thread Ingo Wardinski
On 07/19/2014 07:17 PM, William Dunlap wrote: Wrap all your calls to plot() with print(). E.g., change plot(s, type="vectors", idx=1:12, main="") to print(plot(s, type="vectors", idx=1:12, main="") Some plot methods require their output to be printed to display, some don't. Some help f

Re: [R] using postscript() for multiple individual files

2014-07-19 Thread William Dunlap
Wrap all your calls to plot() with print(). E.g., change plot(s, type="vectors", idx=1:12, main="") to print(plot(s, type="vectors", idx=1:12, main="") Some plot methods require their output to be printed to display, some don't. Some help files for plot methods mention this requirement, so

Re: [R] using postscript() for multiple individual files

2014-07-19 Thread Ingo Wardinski
On 07/19/2014 01:25 PM, Duncan Murdoch wrote: On 19/07/2014, 5:41 AM, Ingo Wardinski wrote: Hello, I try to plot some results of an analysis to multiple individual postscript files, like: postscript("A1_zonflow.ps",onefile=F) plot(s, type = "vectors", idx = 1:12,main="") dev.off() #

Re: [R] using postscript() for multiple individual files

2014-07-19 Thread Duncan Murdoch
On 19/07/2014, 5:41 AM, Ingo Wardinski wrote: > Hello, > I try to plot some results of an analysis to multiple individual > postscript files, like: >postscript("A1_zonflow.ps",onefile=F) >plot(s, type = "vectors", idx = 1:12,main="") >dev.off() > # >postscript("vectors_paired_zonfl

[R] using postscript() for multiple individual files

2014-07-19 Thread Ingo Wardinski
Hello, I try to plot some results of an analysis to multiple individual postscript files, like: postscript("A1_zonflow.ps",onefile=F) plot(s, type = "vectors", idx = 1:12,main="") dev.off() # postscript("vectors_paired_zonflow.ps",onefile=F) plot(s, type = "paired", idx = 1:12,plot.con