Hello RHelpers! I'm very ashamed but.... I'm creating quite a lot of plots in a big loop...each times the program ask me :> Hit <Return> to see next plot:How do I avoid that? Many, many thanks as always.... Anne ---------------------------------------------------- Anne Piotet Tel: +41 79 359 83 32 (mobile) Email: anne.piotet@m-td.com --------------------------------------------------- M-TD Modelling and Technology Development PSE-C CH-1015 Lausanne Switzerland Tel: +41 21 693 83 98 Fax: +41 21 646 41 33 -------------------------------------------------- [[alternative HTML version deleted]]
You wrote:> Hello RHelpers! > I'm very ashamed but.... > I'm creating quite a lot of plots in a big loop...each times the > program ask me : > > Hit <Return> to see next plot: > How do I avoid that?In the file from which your batch job is running (or perhaps in your .Rprofile, or somewhere like that) you have set ``par(ask=TRUE)''. You need set par(ask=FALSE) somehow before running the batch job. You might possibly want to do something like par(ask=interactive()) in the file from which your batch job takes its input. cheers, Rolf Turner rolf at math.unb.ca