HTML Preview Poisson proportion control chart page number 1.


Graphics Commands U CONTROL CHART
DATAPLOT Reference Manual March 11, 1997 2-259
U CONTROL CHART
PURPOSE
Generates a (Poisson) proportion control chart.
DESCRIPTION
A U chart is a data analysis technique for determining if a measurement process has gone out of statistical control. The U chart is
sensitive to changes in the normalized number of defective items in the measurement process. Normalized means that the number of
defectives is divided by the unit area. You can also normalize to compensate for unequal sample sizes (see the NOTE below). The “U”
in U chart stands for “units” as in defectives per lot. The U control chart consists of:
Vertical axis = the normalized number of defectives (number of defectives/area for sub-group = u) for each sub-group;
Horizontal axis = sub-group designation.
A sub-group is frequently a time sequence (e.g., the number of defectives in a daily production run where each day is considered a sub-
group). If the times are equally spaced, the horizontal axis variable can be generated as a sequence (e.g., LET X = SEQUENCE 1 1 N
where N is the number of sub-groups).
In addition, horizontal lines are drawn at the mean number of defectives and at the upper and lower control limits. The distribution of
the number of defective items is assumed to be Poisson. This assumption is the basis for the calculating the upper and lower control
limits. The control limits are calculated as:
(EQ 2-36)
(EQ 2-37)
where
u is the total number of defects divided by the total area (i.e., the sum of the areas variable) and A is the area corresponding to a
given sub-group. This means that the control limits can vary with the sub-group. Also, zero serves as a lower bound on the LCL value.
SYNTAX
U CHART <y1> <area> <x> <SUBSET/EXCEPT/FOR qualification>
where <y1> is a variable containing the number of defective items in each sub-group;
<area> is a variable containing the sample size or area adjustment;
<x> is a variable containing the sub-group identifier (usually 1, 2, 3, ...);
and where the <SUBSET/EXCEPT/FOR qualification> is optional.
EXAMPLES
U CHART Y SIZE X
U CHART Y AREA X SUBSET X > 5
NOTE 1
The U CONTROL CHART is similar to the C CONTROL chart. The distinction is that the C CONTROL CHART is used when the
material being inspected is constant in area and the sub-groups have an equal sample size. The U CONTROL CHART is used when
either of these assumptions is not valid.
If the area is constant but the sample size is unequal, simply use the sample size as the <area> variable. If the sample sizes are equal, but
the areas vary, use the area without modification as the <area> variable. If both the areas and the sample size vary, then use sample size
times area for the <area> variable.
NOTE 2
The attributes of the 4 traces that make up the U control chart are controlled by the standard LINES, CHARACTERS, SPIKES, and
BAR commands. Trace 1 is the response variable, trace 2 is the mean line, and traces 3 and 4 are the upper and lower control limits.
Some analysts prefer to draw the response variable as a character or a spike rather than a connected line. The example program
demonstrates setting the line attributes (the control lines are drawn as dotted lines).
DEFAULT
None
L
CL u 3
u
A
---=
UCL u 3
u
A
---+=
DOWNLOAD HERE


Everything should be made as simple as possible, but not simpler. | Albert Einstein