Skip to content
Prev 178824 / 398506 Next

boxplot - margin settings

boxplot() isn't passing extra parameters in the way you'd expect. If
you set par() first, it works fine.

mar.orig <- par()$mar # save the original values
par(mar = c(20,4,4,4)) # set your new values
boxplot(data, las = 2)
par(mar = mar.orig) # put the original values back

Sarah
On Wed, Apr 29, 2009 at 10:06 AM, Antje <niederlein-rstat at yahoo.de> wrote: