Usually, when I perform my own build functions, I make a construct:
op <- par("mypar"=myvalue) on.exit(par(op))
which is the standard way to return par to previous values. Imagine that you performed some functions that changed some parses, and you need to reset the default values ββwhen starting in R. What is a convenient way to do this?
Or in other words: how to reach default values ββfor par() ?
r default par
Joris Meys Apr 26 '11 at 12:01 2011-04-26 12:01
source share