Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
UCHART Statement

Input Data Sets

DATA= Data Set

You can read defect counts for subgroup samples from a DATA= data set specified in the PROC SHEWHART statement. Each process specified in the UCHART statement must be a SAS variable in the data set. This variable provides the defect count (number of nonconformities) for subgroup samples indexed by the subgroup-variable. The subgroup-variable, specified in the UCHART statement, must also be a SAS variable in the DATA= data set. Each observation in a DATA= data set must contain a value for each process and a value for the subgroup-variable. The data set should contain one observation per subgroup. When you use a DATA= data set with the UCHART statement, the SUBGROUPN= option (which specifies the number of inspection units per subgroup) is required. Other variables that can be read from a DATA= data set include


By default, the SHEWHART procedure reads all of the observations in a DATA= data set. However, if the data set includes the variable _PHASE_, you can read selected groups of observations (referred to as phases) with the READPHASES= option (for an example, see "Displaying Stratification in Phases" ).

For an example of a DATA= data set, see "Creating u Charts from Defect Count Data" .

LIMITS= Data Set

You can read preestablished control limits (or parameters from which the control limits can be calculated) from a LIMITS= data set specified in the PROC SHEWHART statement. For example, the following statements read control limit information from the data set CONLIMS:*

   proc shewhart data=info limits=conlims;
      uchart defects*lot / subgroupn = 10;
   run;

The LIMITS= data set can be an OUTLIMITS= data set that was created in a previous run of the SHEWHART procedure. Such data sets always contain the variables required for a LIMITS= data set. The LIMITS= data set can also be created directly using a DATA step. When you create a LIMITS= data set, you must provide one of the following:

In addition, note the following:


For an example, see "Reading Preestablished Control Limits" .

HISTORY= Data Set

You can read subgroup summary statistics from a HISTORY= data set specified in the PROC SHEWHART statement. This allows you to reuse OUTHISTORY= data sets that have been created in previous runs of the SHEWHART procedure or to read output data sets created with SAS summarization procedures.

A HISTORY= data set used with the UCHART statement must contain the following variables:


The names of the variables containing the number of nonconformities per unit and subgroup sample sizes must be the process name concatenated with the special suffix characters U and N, respectively. For example, consider the following statements:

   proc shewhart history=summary;
      uchart (flaws ndefects)*lot;
   run;

The data set SUMMARY must include the variables LOT, FLAWSU, FLAWSN, NDEFCTSU, and NDEFCTSN.

Note that if you specify a process name that contains eight characters, the names of the summary variables must be formed from the first four characters and the last three characters of the process name, suffixed with the appropriate character.

Other variables that can be read from a HISTORY= data set include


By default, the SHEWHART procedure reads all the observations in a HISTORY= data set. However, if the data set includes the variable _PHASE_, you can read selected groups of observations (referred to as phases) with the READPHASES= option (see "Displaying Stratification in Phases" for an example).

For an example of a HISTORY= data set, see "Creating u Charts from Nonconformities per Unit" .

TABLE= Data Set

You can read summary statistics and control limits from a TABLE= data set specified in the PROC SHEWHART statement. This enables you to reuse an OUTTABLE= data set created in a previous run of the SHEWHART procedure or to create your own TABLE= data set. Because the SHEWHART procedure simply displays the information read from a TABLE= data set, you can use TABLE= data sets to create specialized control charts. Examples are provided in Chapter 49, "Specialized Control Charts."

The following table lists the variables required in a TABLE= data set used with the UCHART statement:

Table 41.23: Variables Required in a TABLE= Data Set
Variable Description
_LCLU_lower control limit for nonconformities per unit
_LIMITN_nominal sample size associated with the control limits
subgroup-variablevalues of the subgroup-variable
_SUBN_subgroup sample size
_SUBU_subgroup number of nonconformities per unit
_U_average number of nonconformities per unit
_UCLU_upper control limit for nonconformities per unit

Other variables that can be read from a TABLE= data set include


For an example of a TABLE= data set, see "Saving Control Limits" .

Chapter Contents
Chapter Contents
Previous
Previous
Next
Next
Top
Top

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