>-----Original Message-----
>From: r-help-bounces at stat.math.ethz.ch
>[mailto:r-help-bounces at stat.math.ethz.ch] On Behalf Of Fredrik
Lundgren>Sent: Sunday, May 04, 2003 10:17 AM
>To: R-help at stat.math.ethz.ch
>Subject: [R] 'rush of graphs on the screen'
>
>
>Hello R experts,
>
>When I try e. g. example(plot) in R 1.7.0 on Linux, the
>example graphs rush
>away on the screen before my eyes. How can I see them one at a time?
>
>Sincerely Fredrik Lundgren
Use:
par(ask = TRUE)
before running example(plot)
You will then br prompted to "Hit <Return> to see next plot: "
Be sure to reset
par(ask = FALSE)
when done.
HTH,
Marc Schwartz