The SPC Procedure

Example 20.3 Reading Preestablished Control Limits

You can apply the control limits that are saved in the data table mycas.AllLimits to new data for those processes. The exception summary table in the section Getting Started: SPC Procedure shows unusual variation in the processes Delay and Diameter, whereas the other six processes are stable. The data table mycas.StableProcesses contains additional data for the stable processes. The following statements read the control limits that are saved in the mycas.AllLimits data table and apply them to these new data:

proc spc data=mycas.StableProcesses limits=mycas.AllLimits;
   xrchart;
run;

The resulting exception summary table is shown in Output 20.3.1.

Output 20.3.1: Exception Summary of Additional Process Data

The SPC Procedure

Means and Ranges Chart Summary for STABLEPROCESSES
processnamesubgroupnameNumber of
Subgroups
MeansRanges
Number
> UCL
Number
< LCL
Number
> UCL
Number
< LCL
AmountBatch350000
BreakstrengthSample280000
KWattsDay550000
PartgapSample360010
TimeLot190000
WeightLot400000


The analysis of the additional process data shows unusual variation in the Partgap process.

Last updated: December 21, 2018