|
BIVARIATE NORMAL TOLERANCE REGION PLOTName:
There are two probability values involved in the tolerance region:
That is, we can state with
The TOLERANCE LIMITS command is used to compute univariate normal tolerance intervals (it will also compute non-parametric tolerance interals). The BASIS TOLERANCE LIMITS is used to compute normal, lognormal, and Weibull tolerance limits. The BIVARIATE NORMAL TOLERANCE REGION PLOT is used for the case where we have bivariate, normally distributed data. In this case, if X and Y denote our bivariate data, we define a region A such that
A] >
} =
Hall and Sheldon state that with a properly chosen K
the following ellipse is the smallest region that will
contain
When we have a sample of n data points, we replace the population means, standard deviations, and correlation with the sample values in the above formula. The problem then becomes how to find the appropriate value of K. Hall and Sheldon describe how to find K for several different cases. We focus on their case 4 where the population means and standard deviations and the population correlation between X and Y are unknown.
Hall and Sheldon developed a table (Table 3 in their paper)
using Monte Carlo methods for
Dataplot will use the tabled values when appropriate.
For n > 50 or for
We recommend using the tabled values for
The BIVARIATE NORMAL TOLERANCE REGION PLOT generates a
scatter plot of Y versus X and then overlays the
tolerance region ellipse on this plot. Note that Dataplot
allows multiple ellipses (corresponding to different values
of
You can specify the desired value of
If you do not specify a value for
To specify a single value of
To specify multiple values of
<SUBSET/EXCEPT/FOR qualification> where <y1> is the first response variable; <y2> is the second response variable; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
This syntax is used when there are no groups in the
data and there is a single value of
<SUBSET/EXCEPT/FOR qualification> where <y1> is the first response variable; <y2> is the second response variable; <lab>is a group-id variable; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
This syntax is used when there are multiple groups in the
data (e.g., multiple labs or multiple methods) and there is
a single value of
<SUBSET/EXCEPT/FOR qualification> where <y1> is the first response variable; <y2> is the second response variable; <lab> is a group-id variable; <delta> is a variable containing the desired values of delta; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
This syntax is used when there are multiple groups in the
data (e.g., multiple labs or multiple methods) and multiple
values of
If you want multiple values of
BIVARIATE NORMAL TOLERANCE REGION PLOT Y1 Y2 LAB BIVARIATE NORMAL TOLERANCE REGION PLOT Y1 Y2 LAB DELTA BIVARIATE NORMAL TOLERANCE REGION PLOT Y1 Y2 LAB ... SUBSET LAB > 2
Krishnamoorthy (2006), Handbook of Statistical Distributions with Applications, Chapman & Hall/CRC, pp. 325-327.
ORIENTATION SQUARE
DIMENSION 20 COLUMNS
.
SKIP 25
READ STG.DAT LABID F LABAVE FAVE
.
TITLE OFFSET 2
TITLE CASE ASIS
LABEL CASE ASIS
TITLE Youden with Bivariate Normal Tolerance (95%-90%)
LET GAMMA = 0.95
LET DELTA = 0.90
X1LABEL Filter Average Value
Y1LABEL Lab Value for Filter
X2label Labs 1 to 9 with Bivariate Normal Contour
X3LABEL SED/ITL/NIST March 2007
.
TIC OFFSET UNITS DATA
XLIMITS 0 1200
XTIC OFFSET -25 100
YLIMITS 0 1500
YTIC OFFSET -350 100
.
CHARACTERS BLANK 1 2 3 4 5 6 7 8 9
LINES BLANK ALL
LINES SOLID
.
. Base tolerance curve on all labs, but only plot first 9
.
BIVARIATE NORMAL TOLERANCE REGION PLOT LABAVE FAVE LABID
Date created: 1/7/2008 |