PDF version (NAG web site
, 64-bit version, 64-bit version)
NAG Toolbox: nag_stat_prob_studentized_range (g01em)
Purpose
nag_stat_prob_studentized_range (g01em) returns the probability associated with the lower tail of the distribution of the Studentized range statistic.
Syntax
Description
The externally Studentized range,
, for a sample,
, is defined as:
where
is an independent estimate of the standard error of the
's. The most common use of this statistic is in the testing of means from a balanced design. In this case for a set of group means,
, the Studentized range statistic is defined to be the difference between the largest and smallest means,
and
, divided by the square root of the mean-square experimental error,
, over the number of observations in each group,
, i.e.,
The Studentized range statistic can be used as part of a multiple comparisons procedure such as the Newman–Keuls procedure or Duncan's multiple range test (see
Montgomery (1984) and
Winer (1970)).
For a Studentized range statistic the probability integral,
, for
degrees of freedom and
groups can be written as:
where
The above two-dimensional integral is evaluated using
nag_quad_2d_fin (d01da)
with the upper and lower limits computed to give stated accuracy (see
Accuracy).
If the degrees of freedom
are greater than
the probability integral can be approximated by its asymptotic form:
This integral is evaluated using
nag_quad_1d_inf (d01am).
References
Abramowitz M and Stegun I A (1972) Handbook of Mathematical Functions (3rd Edition) Dover Publications
Lund R E and Lund J R (1983) Algorithm AS 190: probabilities and upper quartiles for the studentized range Appl. Statist. 32(2) 204–210
Montgomery D C (1984) Design and Analysis of Experiments Wiley
Winer B J (1970) Statistical Principles in Experimental Design McGraw–Hill
Parameters
Compulsory Input Parameters
- 1:
– double scalar
-
, the Studentized range statistic.
Constraint:
.
- 2:
– double scalar
-
, the number of degrees of freedom for the experimental error.
Constraint:
.
- 3:
– int64int32nag_int scalar
-
, the number of groups.
Constraint:
.
Optional Input Parameters
None.
Output Parameters
- 1:
– double scalar
The result of the function.
- 2:
– int64int32nag_int scalar
unless the function detects an error (see
Error Indicators and Warnings).
If on exit , then nag_stat_prob_studentized_range (g01em) returns to .
Error Indicators and Warnings
Note: nag_stat_prob_studentized_range (g01em) may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the function:
Cases prefixed with W are classified as warnings and
do not generate an error of type NAG:error_n. See nag_issue_warnings.
-
-
On entry, | , |
or | , |
or | . |
- W
-
There is some doubt as to whether full accuracy has been achieved.
-
An unexpected error has been triggered by this routine. Please
contact
NAG.
-
Your licence key may have expired or may not have been installed correctly.
-
Dynamic memory allocation failed.
Accuracy
The returned value will have absolute accuracy to at least four decimal places (usually five), unless . When it is usual that the returned value will be a good estimate of the true value.
Further Comments
None.
Example
The lower tail probabilities for the distribution of the Studentized range statistic are computed and printed for a range of values of , and .
Open in the MATLAB editor:
g01em_example
function g01em_example
fprintf('g01em example results\n\n');
q = [ 4.6543; 2.8099; 4.2636];
v = [10; 60.0; 5.0];
ir = [int64(5); 12; 4];
fprintf(' q v ir probability\n');
for j = 1:numel(q);
[p, ifail] = g01em( ...
q(j) , v(j), ir(j));
fprintf('%8.4f%6.1f%4d%12.4f\n', q(j), v(j), ir(j), p);
end
g01em example results
q v ir probability
4.6543 10.0 5 0.9500
2.8099 60.0 12 0.3000
4.2636 5.0 4 0.9000
PDF version (NAG web site
, 64-bit version, 64-bit version)
© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015