/*************Figure 12**************************/ data stopwatch; input time @@; *The @@ tells SAS to look for the next observation on the same line; cards; 133 143 144 167 172 240 ; run; proc sgplot data=stopwatch; hbox time; run; proc sgplot data=stopwatch; vbox time; run;