Choice of notch size in R
Alex Reynolds <reynolda <at> u.washington.edu> writes:
Is there a way to modify the choice of notch size [1] in R's boxplot routine from outlining a 5% significance region, to say 1% or lower?
Not directly from boxplot, because it is hardwired to indirectly call fivenum, not quantile. Check bxp instead, which is the workhorse for boxplot and is more flexible in the parameters passed. Dieter