On Thu, 2006-10-19 at 14:23 -0400, Leeds, Mark (IED) wrote:
> i am looping and creating plots which are coming to the screen. i am in
> linux and remember ( in a previopus life ) i used to use a command so
> that the next graph n + 1 didn't appear on the screen until
> i hit the return key after graph n appeared. i thought i remeber using
> the command unix but when i type unix at the r prompt, it gices me
> system. it's probably a deprecated
> command then but i still don't remember what i did to make the next
> graph not appear until i hit the return key. or maybe it was any key for
> that matter. thanks a lot.
>  
> 
> 
> mark

Mark,

It is par("ask").  See ?par for more information.

 par("ask" = TRUE)

 plot(1:10)

 par("ask = FALSE)

HTH,

Marc Schwartz

______________________________________________
R-help@stat.math.ethz.ch mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to