Hi all, Is there a way to change the color of the boxplot plots outliers? Thanks. Hanna [[alternative HTML version deleted]]
On Sep 7, 2013, at 10:44 AM, li li <hannah.hlx at gmail.com> wrote:> Hi all, > Is there a way to change the color of the boxplot plots outliers? > Thanks. > HannaIf 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