|
Chapter Contents |
Previous |
Next |
| The CAPABILITY Procedure |
By default, major tick marks on the horizontal axis of a histogram correspond to midpoints of the histogram intervals (see Output 1.1.1). You can use the ENDPOINTS= and NENDPOINTS= options to create histograms and comparative histograms whose interval boundaries, or endpoints, are aligned with major tick marks. The following statements create the histogram shown in Output 1.2.1:
title 'Process Capability Analysis of Plating Thickness';
proc capability data=trans noprint;
spec lsl = 3.45 llsl = 2 clsl = black
usl = 3.55 lusl = 2 cusl = black;
histogram thick / cframe = ligr
cfill = blue
endpoints;
run;
Output 1.2.1: Histogram with Endpoints Labeled
|
You can use the NMIDPOINTS= or the NENDPOINTS= option to specify the number of interval midpoints or endpoints in a histogram. The following statements create the histogram shown in Output 1.2.2:
title 'Process Capability Analysis of Plating Thickness';
proc capability data=trans noprint;
spec lsl = 3.45 llsl = 2 clsl = black
usl = 3.55 lusl = 2 cusl = black;
histogram thick / cframe = ligr
cfill = blue
nendpoints = 13;
run;
Output 1.2.2: Histogram with Number of Endpoints Specified
|
|
Chapter Contents |
Previous |
Next |
Top |
Copyright © 2001 by SAS Institute Inc., Cary, NC, USA. All rights reserved.