Resources

Compute Cpk Using Johnson SL Distribution

 /****************************************************************/
 /*          S A S   S A M P L E   L I B R A R Y                 */
 /*                                                              */
 /*    NAME: JOHNSYS7                                            */
 /*   TITLE: Compute Cpk Using Johnson SL Distribution           */
 /* PRODUCT: QC                                                  */
 /*  SYSTEM: ALL                                                 */
 /*    KEYS: Capability Analysis, Capability Indices,            */
 /*   PROCS: IML CAPABILITY                                      */
 /*    DATA:                                                     */
 /*                                                              */
 /*   NOTES: Computes Cpk based on fitted Johnson curve.         */
 /*    MISC:                                                     */
 /*                                                              */
 /*     REF: Slifker, J. F. and Shapiro, S. S. (1980), "The      */
 /*          Johnson System: Selection and Parameter Estimation",*/
 /*          Technometrics, Vol. 22, No. 2, pg. 239-246.         */
 /*                                                              */
 /*          Bowman, K. O. and Shenton, L. R. (1983), "Johnson's */
 /*          System of Distributions", Encyclopedia of           */
 /*          Statistical Sciences, Vol. 4, pg. 303-314.          */
 /*          John Wiley & Sons, Inc.                             */
 /*                                                              */
 /*          Rodriguez, R. N. (1992), "Recent Developments in    */
 /*          Process Capability Analysis", Journal of Quality    */
 /*          Technology, Vol. 24, No. 4, pg. 176-187.            */
 /*                                                              */
 /****************************************************************/
options  ps=60 ls=80;

title 'Johnson SL System of Distributions';

 /*---------------------------------------------------------*/
 /*                                                         */
 /*    Generate 150 observations from Johnson SL System     */
 /*                                                         */
 /*---------------------------------------------------------*/

data sldata;
   lambda  = 1;
   eta     = 2;
   gamma   = 2;
   epsilon = 3;
   do i = 1 to 150;
      z = rannor(993131);
      a = exp( (z-gamma)/eta);
      x = lambda*a + epsilon;
      output;
      end;
   keep x;
run;

 /*--------------------------------------------------*/
 /*                                                  */
 /* Estimate Johnson SL parameters using PROC IML    */
 /*                                                  */
 /* The parameters are estimated using the method of */
 /* matching percentiles as described in Slifker and */
 /* Shenton (1980).                                  */
 /*                                                  */
 /*--------------------------------------------------*/

proc iml;

sort sldata out=sorted by x;
use sorted;

read all var {x} into x;

nobs=nrow(x);

 /*---  Choose z-value for percentile fit ---*/

zval = .524;

p3   = probnorm(3*zval);
p1   = probnorm(zval);
pm1  = probnorm(-1*zval);
pm3  = probnorm(-3*zval);

i4   = p3*nobs  + .5;
i3   = p1*nobs  + .5;
i2   = pm1*nobs + .5;
i1   = pm3*nobs + .5;

x3z  = x[int(i4)] + mod(i4,1)*(x[int(i4)+1] - x[int(i4)]);
x1z  = x[int(i3)] + mod(i3,1)*(x[int(i3)+1] - x[int(i3)]);
xm1z = x[int(i2)] + mod(i2,1)*(x[int(i2)+1] - x[int(i2)]);
xm3z = x[int(i1)] + mod(i1,1)*(x[int(i1)+1] - x[int(i1)]);

m    = x3z - x1z;
n    = xm1z - xm3z;
p    = x1z - xm1z;

 /*--- Estimate Johnson SL Parameter ---*/

eta     = 2*zval / log(m/p);
gamma   = eta*log( (m/p - 1) / (p*sqrt(m/p)) );
epsilon = (x1z + xm1z)/2 - (p/2)* (m/p + 1) / (m/p - 1);

 /*---------------------------------------------*/
 /*                                             */
 /*    Compute Cpk from fitted Johnson curve    */
 /*                                             */
 /*    For method of computing Cpk based on a   */
 /*    fitted distribution, see Rodriguez(1992) */
 /*                                             */
 /*---------------------------------------------*/

lsl    = 3.1;
usl    = 3.9;

alpha  = .00135;

z      = probit(.5);
a      = exp( (z-gamma)/eta);
median = a + epsilon;

z      = probit(alpha);
a      = exp( (z-gamma)/eta);
lowp   = a + epsilon;

z      = probit(1-alpha);
a      = exp( (z-gamma)/eta);
highp  = a + epsilon;

cpk    = min( (median-lsl)/(median-lowp),
              (usl-median)/(highp-median) );


create parms var{gamma eta epsilon cpk};
append;
close parms;

quit;

 /*---------------------------------------*/
 /*                                       */
 /* Use PROC CAPABILITY to save width of  */
 /* histogram bars in OUTFIT= dataset.    */
 /*                                       */
 /*---------------------------------------*/

proc capability data=sldata noprint;
   hist x / outfit = out1 normal(noprint) noplot;
   run;

 /*--------------------------------------------------------------*/
 /*                                                              */
 /* Create annotate dataset that will superimpose the Johnson    */
 /* curve and a table containing the parameter estimates onto a  */
 /* histogram.                                                   */
 /*                                                              */
 /*--------------------------------------------------------------*/

data anno;
   merge parms out1;
   length function style color cepsilon cgamma ccpk $ 8
          text $ 20;
   function = 'point';
   color    = 'yellow';
   when     = 'a';
   size     = 2;
   xsys     = '2';
   ysys     = '2';
   pi       = 3.14159;
   constant = (100*_width_*eta/sqrt(2*pi));
   start    = _midpt1_ - .5*_width_;
   finish   = _midptn_ + .5*_width_;

   /*--- Draw Johnson Curve ---*/

   do x=start to finish by .01;
      a        = (x-epsilon);
      y        = constant* (1/a)*exp(-.5*(gamma + eta*log(a))**2);
      output;
      function = 'draw';
      end;

   /*--- Format Parameters and Cpk with 3 Decimal Places ---*/

   cepsilon = put(epsilon,6.3); ceta = put(eta,6.3);
   cgamma   = put(gamma,  6.3); ccpk = put(cpk,6.3);

   /*--- Draw Table containing parameter estimates ---*/

   function = 'move';      xsys = '1';
                           ysys = '1';
                           x = 100; y = 100;       output;
                           xsys = 'A';
                           ysys = 'A';
                           x = -3;  y = -3;        output;
   function = 'cntl2txt';                          output;
   function = 'push';                              output;
   function = 'label';    hsys     = 'A';
                          size     =  1;
                          position = 'a';
                          style    = 'none';
                          color    = 'white';
                          x = 0; y = 0;
                          text = 'Johnson (Sl)';   output;

   function = 'move';     x = -13;   y = .5;       output;
   function = 'draw';     color = 'yellow';
                          size  =  2;
                          x = -4;   y = 0;         output;

   function = 'cntl2txt';                          output;

   function = 'label';    size     =  1;
                          color    = 'white';
                          position = 'c';
               x = 0;  y = -3.5;text = 'Epsilon';  output;
               x = -7; y = -2;  text = 'Gamma';    output;
               x = -5; y = -2;  text = 'Eta';      output;
               x = -3; y = -2;  text = 'Cpk';      output;

   function = 'pop';                               output;
   function = 'label'; position = 'a';  x = 0;
                       y = -3; text = cepsilon;    output;
                       y = -2; text = cgamma;      output;
                       y = -2; text = ceta;        output;
                       y = -2; text = ccpk;        output;

   function = 'move';  x = -18; y = 2;             output;
   function = 'poly';     style = 'solid';
                          color = 'blue';
                          x = 0;  y = 0;           output;
   function = 'polycont'; x = 19; y = 0;           output;
                          x = 19; y = -12;         output;
                          x = 0;  y = -12;         output;
                          x = 0;  y = 0;           output;

   function = 'move';  x = 0;  y = -3;             output;
   function = 'draw';  color = 'white';
                       x = 19; y = 0;              output;

   function = 'move';      xsys = '1';
                           ysys = '1';
                           x = 100; y = 100;       output;
                           xsys = 'A';
                           ysys = 'A';
                           x = -3;  y = -3;        output;

   function = 'move';     x = -13;   y = .5;       output;
   function = 'draw';     color = 'yellow';
                          size  =  2;
                          x = -4;   y = 0;         output;

   keep function xsys  ysys     hsys  x     y
        text     size  position style color when;
   run;


 /*--------------------------------------------------------------*/
 /*                                                              */
 /* Display histogram with Johnson curve and parameter estimates */
 /*                                                              */
 /*--------------------------------------------------------------*/

pattern1 c=blue  v=s;
pattern2 c=red   v=s;
pattern3 c=green v=s;

symbol1  c=white;

options nogstyle;
proc capability data=sldata annotate=anno noprint;
   spec  lsl = 3.1    usl = 3.9
        clsl = white cusl = white
        llsl = 1     lusl = 2
        wlsl = 2     wusl = 2;
   hist x / cframe = gray
            legend = legend1;
   legend1 cframe=gray cborder=black;
run;
options gstyle;

goptions reset=global;