Skip to content
Prev 157069 / 398506 Next

Is there a single command that can revert all the plotting parameters to default?

What do you mean? If you kill the existing graph, perhaps using 
dev.off(), the next plot generated should use default values. Is this 
what you want?

Some plotting functions use this at the start before modifying
   oldpar <- par(no.readonly=T)
   on.exit(par(oldpar))

Regards, Adai

Regards, Adai
Arthur Roberts wrote: