Skip to content
Prev 79188 / 398502 Next

A two-part question about box-percentile plots, bpplot(): (1) yaxt="n" doesn't seem to work (2) how to display mean values

xpRt.wannabe wrote:
Try doing par(yaxt="n") before bpplot.
w <- bpplot(x1, x2, x3)
points(w[1],mean(x1))
points(w[2],mean(x2))
etc.

Better may be to use bwplot(..., panel=panel.bpplot) which shows the 
mean automatically with a dot.  By default it doesn't show all the 
percentiles.

Frank