[R] hit return key before next gaph appears
    Marc Schwartz 
    MSchwartz at mn.rr.com
       
    Thu Oct 19 20:30:49 CEST 2006
    
    
  
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
    
    
More information about the R-help
mailing list