Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
The BOXPLOT Procedure

Getting Started

This section demonstrates how you can use the BOXPLOT procedure to produce box plots for your data.

Suppose that a petroleum company uses a turbine to heat water into steam that is pumped into the ground to make oil more viscous and easier to extract. This process occurs 20 times daily, and the amount of power (in kilowatts) used to heat the water to the desired temperature is recorded. The following statements create a SAS data set called Turbine that contains the power output measurements for 20 work days.

   data Turbine;
      informat day date7.;
      format day date5.;
      label kwatts='Average Power Output';
      input day @;
      do i=1 to 10;
         input kwatts @;
         output;
         end;
      drop i;
   datalines;
   05JUL94 3196 3507 4050 3215 3583 3617 3789 3180 3505 3454
   05JUL94 3417 3199 3613 3384 3475 3316 3556 3607 3364 3721
   06JUL94 3390 3562 3413 3193 3635 3179 3348 3199 3413 3562
   06JUL94 3428 3320 3745 3426 3849 3256 3841 3575 3752 3347
   07JUL94 3478 3465 3445 3383 3684 3304 3398 3578 3348 3369
   07JUL94 3670 3614 3307 3595 3448 3304 3385 3499 3781 3711
   08JUL94 3448 3045 3446 3620 3466 3533 3590 3070 3499 3457
   08JUL94 3411 3350 3417 3629 3400 3381 3309 3608 3438 3567
   11JUL94 3568 2968 3514 3465 3175 3358 3460 3851 3845 2983
   11JUL94 3410 3274 3590 3527 3509 3284 3457 3729 3916 3633
   12JUL94 3153 3408 3741 3203 3047 3580 3571 3579 3602 3335
   12JUL94 3494 3662 3586 3628 3881 3443 3456 3593 3827 3573
   13JUL94 3594 3711 3369 3341 3611 3496 3554 3400 3295 3002
   13JUL94 3495 3368 3726 3738 3250 3632 3415 3591 3787 3478
   14JUL94 3482 3546 3196 3379 3559 3235 3549 3445 3413 3859
   14JUL94 3330 3465 3994 3362 3309 3781 3211 3550 3637 3626
   15JUL94 3152 3269 3431 3438 3575 3476 3115 3146 3731 3171
   15JUL94 3206 3140 3562 3592 3722 3421 3471 3621 3361 3370
   18JUL94 3421 3381 4040 3467 3475 3285 3619 3325 3317 3472
   18JUL94 3296 3501 3366 3492 3367 3619 3550 3263 3355 3510
   19JUL94 3795 3872 3559 3432 3322 3587 3336 3732 3451 3215
   19JUL94 3594 3410 3335 3216 3336 3638 3419 3515 3399 3709
   20JUL94 3850 3431 3460 3623 3516 3810 3671 3602 3480 3388
   20JUL94 3365 3845 3520 3708 3202 3365 3731 3840 3182 3677
   21JUL94 3711 3648 3212 3664 3281 3371 3416 3636 3701 3385
   21JUL94 3769 3586 3540 3703 3320 3323 3480 3750 3490 3395
   22JUL94 3596 3436 3757 3288 3417 3331 3475 3600 3690 3534
   22JUL94 3306 3077 3357 3528 3530 3327 3113 3812 3711 3599
   25JUL94 3428 3760 3641 3393 3182 3381 3425 3467 3451 3189
   25JUL94 3588 3484 3759 3292 3063 3442 3712 3061 3815 3339
   26JUL94 3746 3426 3320 3819 3584 3877 3779 3506 3787 3676
   26JUL94 3727 3366 3288 3684 3500 3501 3427 3508 3392 3814
   27JUL94 3676 3475 3595 3122 3429 3474 3125 3307 3467 3832
   27JUL94 3383 3114 3431 3693 3363 3486 3928 3753 3552 3524
   28JUL94 3349 3422 3674 3501 3639 3682 3354 3595 3407 3400
   28JUL94 3401 3359 3167 3524 3561 3801 3496 3476 3480 3570
   29JUL94 3618 3324 3475 3621 3376 3540 3585 3320 3256 3443
   29JUL94 3415 3445 3561 3494 3140 3090 3561 3800 3056 3536
   01AUG94 3421 3787 3454 3699 3307 3917 3292 3310 3283 3536
   01AUG94 3756 3145 3571 3331 3725 3605 3547 3421 3257 3574
   ;
   run;

In the data set Turbine, each observation contains the date and the power output for a single heating. The first 20 observations contain the outputs for the first day, the second 20 observations contain the outputs for the second day, and so on. Because the variable day classifies the observations into rational groups, it is referred to as the group variable. The variable kwatts contains the output measurements and is referred to as the analysis variable.

You can create a box plot to examine the distribution of power output for each day. The following statements create the box plot shown in Figure 18.1.

   symbol color = salmon h = .8;
   goptions ftext=swiss;
   axis1 minor=none color=black label=(angle=90 rotate=0);
   title 'Box Plot for Power Output';

   proc boxplot data=Turbine;
      plot kwatts*day/ cframe   = vligb
                       cboxes   = dagr
                       cboxfill = ywh
                       vaxis    = axis1;
   run;

The input data set Turbine is specified with the DATA= option in the PROC BOXPLOT statement. The PLOT statement requests a box-and-whisker plot for each group of data. After the keyword PLOT, you specify the analysis variable (in this case, kwatts), followed by an asterisk and the group variable (day).

boxgs2.gif (7152 bytes)

Figure 18.1: Box Plot for Power Output Data

The box plot displayed in Figure 18.1 represents summary statistics for the analysis variable kwatts; each of the 20 box-and-whisker plots describes the variable kwatts for a particular day. The plot elements and the statistics they represent are as follows.

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

Copyright © 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.