The BOXPLOT Procedure

Example 28.6 Creating Horizontal Box-and-Whiskers Plots

The following statements use the HORIZONTAL option, which is supported only for ODS Graphics output, to produce a horizontal box plot:

proc boxplot data=Times;
   plot Delay*Day /
      boxstyle = schematic
      horizontal;
   label Delay = 'Delay in Minutes';
run;

The horizontal box plot is shown in Output 28.6.1.

Output 28.6.1: Horizontal Box Plot

Horizontal Box Plot