|
AGRESTI COULLName:
In this context, we define success as "1" and failure as "0". Dataplot actually allows any two distinct values to be used. However, the larger value will always be considered "success" and the smaller value will always be considered "failure". If the variable contains more than two distinct values, an error is reported.
The BINOMIAL PROPORTION command is used to compute a point
estimate of the probability of success. Confidence intervals
for the binomial proportion can be computed using a method
recommended by Agresti and Coull and also by Brown, Cai and
DasGupta (the methodology was originally developed by Wilson
in 1927). This method solves for the two values of
p0 (say, pupper and
plower)) that result from setting
z =
This approach can be substantiated on the grounds that it is the exact algebraic counterpart to the (large-sample) hypothesis test and is also supported by the research of Agresti and Coull. One advantage of this procedure is that its worth does not strongly depend upon the value of n and/or p, and indeed was recommended by Agresti and Coull for virtually all combinations of n and p. Another advantage is that the limits are in the (0,1) interval. This is not true for the frequently used normal approximation:
A one-sided confidence interval can also be constructed simply by
replacing each
<SUBSET/EXCEPT/FOR qualification> where <y> is the response variable; <par> is a parameter where the computed value is saved; and where the <SUBSET/EXCEPT/FOR qualification> is optional. This is for raw data case and <y> should contain a sequence of 0's and 1's. This returns the lower confidence limit for the two-sided Agresti-Coull interval.
<SUBSET/EXCEPT/FOR qualification> where <y> is the response variable; <par> is a parameter where the computed value is saved; and where the <SUBSET/EXCEPT/FOR qualification> is optional. This is for raw data case and <y> should contain a sequence of 0's and 1's. This returns the upper confidence limit for the two-sided Agresti-Coull interval.
<SUBSET/EXCEPT/FOR qualification> where <y> is the response variable; <par> is a parameter where the computed value is saved; and where the <SUBSET/EXCEPT/FOR qualification> is optional. This is for raw data case and <y> should contain a sequence of 0's and 1's. This returns the lower confidence limit for the one-sided lower tailed Agresti-Coull interval.
<SUBSET/EXCEPT/FOR qualification> where <y> is the response variable; <par> is a parameter where the computed value is saved; and where the <SUBSET/EXCEPT/FOR qualification> is optional. This is for raw data case and <y> should contain a sequence of 0's and 1's. This returns the upper confidence limit for the one-sided upper tailed Agresti-Coull interval.
LET A = TWO-SIDED UPPER AGRESTI COULL Y1 LET A = ONE-SIDED LOWER AGRESTI COULL Y1 LET A = ONE-SIDED UPPER AGRESTI COULL Y1 LET A = TWO-SIDED LOWER AGRESTI COULL Y1 SUBSET TAG > 2
The default value of alpha is 0.95.
These various commands are actually where the AGRESTI COULL statistics are most commonly used.
This command is a Math Let Subcommand rather than a Statistics LET Subcommand. The distinctions are:
Which form of the command to use is determined by the context of what you are trying to do. For details on the "Math" version of the command, enter
Brown, L. D. Cai, T. T. and DasGupta, A. (2001), "Interval estimation for a binomial proportion," Statistical Science, 16(2), 101-133.
LET N = 1
LET P = 0.8
LET ALPHA = 0.95
LET Y = BINOMIAL RANDOM NUMBERS FOR I = 1 1 50
LET AL = ONE SIDED LOWER AGRESTI COULL Y
LET AU = ONE SIDED LOWER AGRESTI COULL Y
LET BL = TWO SIDED LOWER AGRESTI COULL Y
LET BU = TWO SIDED LOWER AGRESTI COULL Y
PRINT AL AU BL BU
The following output is generated.
AL -- 0.6706774E+00
AU -- 0.8605760E+00
BL -- 0.6475845E+00
BU -- 0.8724608E+00
Date created: 10/5/2010 |