NAG Library Routine Document
g01emf
(prob_studentized_range)
1
Purpose
g01emf returns the probability associated with the lower tail of the distribution of the Studentized range statistic, via the routine name.
2
Specification
Fortran Interface
Real (Kind=nag_wp) | :: | g01emf | Integer, Intent (In) | :: |
ir | Integer, Intent (Inout) | :: |
ifail | Real (Kind=nag_wp), Intent (In) | :: |
q,
v |
|
C Header Interface
#include nagmk26.h
double |
g01emf_ (
const double *q,
const double *v,
const Integer *ir,
Integer *ifail) |
|
3
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
d01daf
with the upper and lower limits computed to give stated accuracy (see
Section 7).
If the degrees of freedom
are greater than
the probability integral can be approximated by its asymptotic form:
This integral is evaluated using
d01amf.
4
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
5
Arguments
- 1: – Real (Kind=nag_wp)Input
-
On entry: , the Studentized range statistic.
Constraint:
.
- 2: – Real (Kind=nag_wp)Input
-
On entry: , the number of degrees of freedom for the experimental error.
Constraint:
.
- 3: – IntegerInput
-
On entry: , the number of groups.
Constraint:
.
- 4: – IntegerInput/Output
-
On entry:
ifail must be set to
,
. If you are unfamiliar with this argument you should refer to
Section 3.4 in How to Use the NAG Library and its Documentation for details.
For environments where it might be inappropriate to halt program execution when an error is detected, the value
is recommended. If the output of error messages is undesirable, then the value
is recommended. Otherwise, because for this routine the values of the output arguments may be useful even if
on exit, the recommended value is
.
When the value is used it is essential to test the value of ifail on exit.
On exit:
unless the routine detects an error or a warning has been flagged (see
Section 6).
If on exit , then g01emf returns to .
6
Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
x04aaf).
Note: g01emf may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
-
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, .
Constraint: .
-
There is some doubt as to whether full accuracy has been achieved. The returned value should be a reasonable estimate of the true value.
An unexpected error has been triggered by this routine. Please
contact
NAG.
See
Section 3.9 in How to Use the NAG Library and its Documentation for further information.
Your licence key may have expired or may not have been installed correctly.
See
Section 3.8 in How to Use the NAG Library and its Documentation for further information.
Dynamic memory allocation failed.
See
Section 3.7 in How to Use the NAG Library and its Documentation for further information.
7
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.
8
Parallelism and Performance
g01emf is not threaded in any implementation.
None.
10
Example
The lower tail probabilities for the distribution of the Studentized range statistic are computed and printed for a range of values of , and .
10.1
Program Text
Program Text (g01emfe.f90)
10.2
Program Data
Program Data (g01emfe.d)
10.3
Program Results
Program Results (g01emfe.r)