Resources

Assessing Process Capability With Cpm

 /****************************************************************/
 /*          S A S   S A M P L E   L I B R A R Y                 */
 /*                                                              */
 /*    NAME: CAPCPM                                              */
 /*   TITLE: Assessing Process Capability With Cpm               */
 /* PRODUCT: QC                                                  */
 /*  SYSTEM: ALL                                                 */
 /*    KEYS: Capability Analysis, Capability Indices,            */
 /*   PROCS: CAPABILITY                                          */
 /*    DATA:                                                     */
 /*                                                              */
 /*    MISC:                                                     */
 /*                                                              */
 /****************************************************************/
  options ps=60 ls=80 nodate;

  data bottles;
     input strength @@;
     label strength='Bursting Strength in PSI';
     cards;
  265  197  346  280  265  200  221  265  261  278
  205  286  317  242  254  235  176  262  248  250
  263  274  242  260  281  246  248  271  260  265
  307  243  258  321  294  328  263  245  274  270
  220  231  276  228  223  296  231  301  337  298
  268  267  300  250  260  276  334  280  250  257
  260  281  208  299  308  264  280  274  278  210
  234  265  187  258  235  269  265  253  254  280
  299  214  264  267  283  235  272  287  274  269
  215  318  271  293  277  290  283  258  275  251
  ;

  proc capability data=bottles;
     spec lsl=200 target=275;
  run;