Skip to content
Prev 31870 / 398513 Next

what does boxplot draw?

Wladimir Eremeev <wl at eimb.ru> writes:
The full story is in help(boxplots.stats). It's all a bit quirky, but
faithful to the original reference by Tukey. It may be illustrative to
do something like

lapply(4:10,function(i)cbind(
     bxp=boxplot.stats(1:i)$stats,
      qu=quantile(1:i)))