[R] par() defaults in Rprofile

2004-10-20 Thread Sebastian Luque
Dear List, I've tried to set default par() in .Rprofile by putting the following in the .First function:   setHook(packageEvent(graphics, onLoad),   function(...) {graphics::par(cex.axis=1.5, cex.lab=2, las=1)}   ) My goal was to set par() defaults without opening a device

Re: [R] par() defaults in Rprofile

2004-10-20 Thread Uwe Ligges
Sebastian Luque wrote: Dear List, I've tried to set default par() in .Rprofile by putting the following in the .First function: setHook(packageEvent(graphics, onLoad), function(...) {graphics::par(cex.axis=1.5, cex.lab=2, las=1)} ) My goal was to set par() defaults without

Re: [R] par() defaults in Rprofile

2004-10-20 Thread Prof Brian Ripley
On Wed, 20 Oct 2004, Sebastian Luque wrote: Dear List, I've tried to set default par() in .Rprofile by putting the following in the .First function:   setHook(packageEvent(graphics, onLoad),   function(...) {graphics::par(cex.axis=1.5, cex.lab=2, las=1)}   ) My goal