On 9/29/07, Michael Friendly <[EMAIL PROTECTED]> wrote:
> In a long session, producing multiple graphs, I sometimes repeatedly
> change par() settings, particularly with multi-row/col displays.
> If I'm using a script, I'll do
>
> op <- par(newsettings)
> ... plots ...
> par(op)
>
> but sometimes I do things on the fly and can't easily back out
> to the default settings.  I'm looking for someway to do the
> equivalent of
>
> par(reset=TRUE)

par()s get reset every time a new device is opened, so one option is
to just close the device (dev.off()) and continue.

-Deepayan

______________________________________________
R-help@r-project.org 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