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!
Use the option
frame=F(orframe.plot=F) in the boxplot function :Other parameters that can be used in the boxplot function are (rather inconveniently) listed on the helppage of
?bxp, which is the underlying function ofboxplot()