Re: [R] box-plot without a box surrounding the plot

2008-08-09 Thread Jörg Groß
par(bty="l") boxplot(count ~ spray, data = InsectSprays, col = "lightgray") #is that what you want? Stephen Thanks! That's what I needed. On Sat, Aug 9, 2008 at 8:12 PM, Jörg Groß <[EMAIL PROTECTED]> wrote: Hi, I want to draw a boxplot and I want to get rid of the surrounding box.

Re: [R] box-plot without a box surrounding the plot

2008-08-09 Thread stephen sefick
par(bty="l") boxplot(count ~ spray, data = InsectSprays, col = "lightgray") #is that what you want? Stephen On Sat, Aug 9, 2008 at 8:12 PM, Jörg Groß <[EMAIL PROTECTED]> wrote: > Hi, > > I want to draw a boxplot and I want to get rid of the surrounding box. > So that there are only the axis lines

[R] box-plot without a box surrounding the plot

2008-08-09 Thread Jörg Groß
Hi, I want to draw a boxplot and I want to get rid of the surrounding box. So that there are only the axis lines left on the bottom and on the left. I tried a litte bit with box() but I dont get it the way I want. Can somebody help me out? __ R-he