Does someone know how to remove the frame when producing a boxplot with the R boxplot() function?

With the plot() function there is an optinal argument, frame=F, that does the job... but it is not included in the boxplot() function...

Thank you very much!

link|improve this question

So copy the code to your own local marcoBoxplot() and change it accordingly. – Dirk Eddelbuettel Feb 9 '11 at 14:59
1  
@Dirk For once we can't say to RTFM, because the use of frame is not even mentioned in that FM... – Joris Meys Feb 9 '11 at 15:06
feedback

3 Answers

up vote 6 down vote accepted

Use the option frame=F (or frame.plot=F) in the boxplot function :

boxplot(count ~ spray, data = InsectSprays, col = "lightgray",frame=F)

Other parameters that can be used in the boxplot function are (rather inconveniently) listed on the helppage of ?bxp, which is the underlying function of boxplot()

link|improve this answer
feedback

boxplot() seems to accept the frame argument just fine.

 boxplot(count ~ spray, data = InsectSprays, col = "lightgray")
 #vs    
 boxplot(count ~ spray, data = InsectSprays, col = "lightgray", frame = FALSE)
link|improve this answer
Yes, you are right :-S I do not know why I did not manage to make it work before... I am sorry for that stupid post! – Marco Feb 9 '11 at 16:08
feedback

You can do this with bty in par. Using an example from the boxplot help:

par(bty='n')
boxplot(count ~ spray, data = InsectSprays, col = "lightgray")
link|improve this answer
Thank you very much! – Marco Feb 9 '11 at 15:00
@Marco : Why don't you just use the parameter frame (See Chases and my answer)? If you don't know what you're doing, you'll get serious problems when messing with par(), as it sets general parameters, not for the specific plot. – Joris Meys Feb 9 '11 at 15:55
@Joris Meys: Yes you are right, I should use the parameter frame. Thx – Marco Feb 9 '11 at 18:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.