Removing the frame from the Boxplot() function in R -
does know how remove frame when producing boxplot r boxplot()
function?
with plot()
function there optinal argument, frame=f
, job... not included in boxplot()
function...
thank much!
use option frame=f
(or frame.plot=f
) in boxplot function :
boxplot(count ~ spray, data = insectsprays, col = "lightgray",frame=f)
other parameters can used in boxplot function (rather inconveniently) listed on helppage of ?bxp
, underlying function of boxplot()
Comments
Post a Comment