Chapter Contents |
Previous |
Next |
The BOXPLOT Procedure |
title 'Analysis of Airline Departure Delays'; title2 'Using the NOTCHES Option'; proc boxplot data=times; plot delay * day / boxstyle = schematicid cboxfill = ywh nohlabel notches cboxes = dagr cframe = vligb idcolor = salmon vaxis = axis1; id reason; label delay = 'Delay in Minutes'; run;
The notches, requested with the NOTCHES option, measure the significance of the difference between two medians. The medians of two box plots are significantly different at approximately the 0.05 level if the corresponding notches do not overlap. For example, in Output 18.3.1, the median for December 20 is significantly different from the median for December 24.
Output 18.3.1: Notched Side-by-Side Box-and-Whisker Plots
Chapter Contents |
Previous |
Next |
Top |
Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.