Skip to content

mean in the boxplot

3 messages · Yan Jiao, David Winsemius, Peter Ehlers

#
On Apr 1, 2011, at 1:20 PM, Yan Jiao wrote:

            
Read ... help(boxplot)

Use boxplot to create a set of values, substitute th emean for the  
groups then pass the mangled set of values to bxp().
#
On 2011-04-01 10:28, David Winsemius wrote:
Another option is to add the means as points after
plotting the boxplot with:

   boxplot(....)
   points(1:n, Means)

This is particularly useful if you want both the
medians and the means on the plot. If you don't
want the median line, you can get rid of it by
setting medcol="transparent" in the boxplot() call.

But then again, the whole point of a boxplot is to
represent general distributional shape for which
the median is surely more effective.

Peter Ehlers