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

Popular posts from this blog

python - Scipy curvefit RuntimeError:Optimal parameters not found: Number of calls to function has reached maxfev = 1000 -

java - where to store the user credentials in an enterprise application(EAI)? -

openxml - Programmatically format a date in an excel sheet using Office Open Xml SDK -