Previous Page | Next Page

The SHEWHART Procedure

Learning to Use the SHEWHART Procedure

Although the SHEWHART procedure provides a large number of options, you can use the procedure to create a basic Shewhart chart with as few as two SAS statements:

  • the PROC SHEWHART statement, which starts the procedure and specifies the input SAS data set

  • a chart statement, which specifies the type of Shewhart chart you want to create and the variables in the input data set that you want to analyze

For example, you can use the following statements to create and charts with limits for measurements read from a SAS data set named Drums:

proc shewhart data=Drums;
   xrchart Flangewidth * Hour;
run;

The keyword XRCHART in the chart statement specifies that and charts are to be created. The following SAS variables are specified in the XRCHART statement:

  • A SAS variable (Flangewidth), whose values are the process measurements, is specified before the asterisk. This variable is referred to as the process.

  • A SAS variable (Hour), whose values classify the measurements into subgroups, is specified after the asterisk. This variable is referred to as a subgroup-variable.

The same form of specification is used with other chart statements to create different types of Shewhart charts. The following table lists the 13 chart statements that are available with the SHEWHART procedure:

Table 13.1 Chart Statements in the SHEWHART Procedure

Statement

Chart(s) Displayed

"Getting Started" Section

BOXCHART

box chart with optional trend chart

Getting Started

CCHART

chart

Getting Started

IRCHART

individual and moving range charts

Getting Started

MCHART

median chart with optional trend chart

Getting Started

MRCHART

median and charts

Getting Started

NPCHART

chart

Getting Started

PCHART

chart

Getting Started

RCHART

chart

Getting Started

SCHART

chart

Getting Started

UCHART

chart

Getting Started

XCHART

chart with optional trend chart

Getting Started

XRCHART

and charts

Getting Started

XSCHART

and charts

Getting Started

If you are using the SHEWHART procedure for the first time, you should do the following:

Once you have learned to use a particular chart statement, you will find it straightforward to use the remaining chart statements since their syntax is nearly the same. A separate, self-contained section is provided for each chart statement.

Previous Page | Next Page | Top of Page