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.