On Sep 7, 2013, at 10:44 AM, li li <hannah....@gmail.com> wrote: > Hi all, > Is there a way to change the color of the boxplot plots outliers? > Thanks. > Hanna
If you review ?boxplot, you will see that ?bxp is listed in the See Also section and is used for the actual plotting. In ?bxp is a description of the various parameters for the plot. Thus: set.seed(1) boxplot(rexp(50), outcol = "red") Regards, Marc Schwartz ______________________________________________ R-help@r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.