Skip to content

'rush of graphs on the screen'

3 messages · Fredrik Lundgren, Marc Schwartz, Uwe Ligges

#
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
#
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
#
Fredrik Lundgren wrote:
For example:

par(ask = TRUE)
example(plot)


Uwe Ligges