NAG Library Routine Document
G01AEF
1 Purpose
G01AEF constructs a frequency distribution of a variable, according to either user-supplied, or routine-calculated class boundary values.
2 Specification
INTEGER |
N, K, ICLASS, IFREQ(K), IFAIL |
REAL (KIND=nag_wp) |
X(N), CB(K), XMIN, XMAX |
|
3 Description
The data consists of a sample of observations of a continuous variable, denoted by , for . Let and .
G01AEF constructs a frequency distribution with classes denoted by , for .
The boundary values may be either user-supplied, or routine-calculated, and are denoted by , for .
If the boundary values of the classes are to be routine-calculated, then they are determined in one of the following ways:
(a) |
if , the range of values is divided into intervals of equal length, and two extreme intervals, defined by the class boundary values ; |
(b) |
if , . |
However formed, the values
are assumed to be in ascending order. The class frequencies are formed with
- the number of values in the interval
- the number of values in the interval ,
- the number of values in the interval ,
where [ means inclusive, and ) means exclusive. If the class boundary values are routine-calculated and
, then
, and
and
are chosen so that
and
.
If a frequency distribution is required for a discrete variable, then it is suggested that you supply the class boundary values; routine-calculated boundary values may be slightly imprecise (due to the adjustment of and outlined above) and cause values very close to a class boundary to be assigned to the wrong class.
4 References
None.
5 Parameters
- 1: N – INTEGERInput
On entry: , the number of observations.
Constraint:
.
- 2: K – INTEGERInput
On entry:
, the number of classes desired in the frequency distribution. Whether or not class boundary values are user-supplied,
K must include the two extreme classes which stretch to
.
Constraint:
.
- 3: X(N) – REAL (KIND=nag_wp) arrayInput
On entry: the sample of observations of the variable for which the frequency distribution is required,
, for . The values may be in any order.
- 4: ICLASS – INTEGERInput
On entry: indicates whether class boundary values are to be calculated within G01AEF, or are supplied by you.
If , then the class boundary values are to be calculated within the routine.
If , they are user-supplied.
Constraint:
or .
- 5: CB(K) – REAL (KIND=nag_wp) arrayInput/Output
On entry: if
, then the elements of
CB need not be assigned values, as G01AEF calculates
class boundary values.
If
, the first
elements of
CB must contain the class boundary values you supplied, in ascending order.
In both cases, the element need not be assigned, as it is not used in the routine.
On exit: the first
elements of
CB contain the class boundary values in ascending order.
Constraint:
if , , for .
- 6: IFREQ(K) – INTEGER arrayOutput
On exit: the elements of
IFREQ contain the frequencies in each class,
, for
. In particular
contains the frequency of the class up to
,
, and
contains the frequency of the class greater than
,
.
- 7: XMIN – REAL (KIND=nag_wp)Output
On exit: the smallest value in the sample, .
- 8: XMAX – REAL (KIND=nag_wp)Output
On exit: the largest value in the sample, .
- 9: IFAIL – INTEGERInput/Output
-
On entry:
IFAIL must be set to
,
. If you are unfamiliar with this parameter you should refer to
Section 3.3 in the Essential Introduction 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, if you are not familiar with this parameter, 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).
6 Error Indicators and Warnings
If on entry
or
, explanatory error messages are output on the current error message unit (as defined by
X04AAF).
Errors or warnings detected by the routine:
-
On entry, | the user-supplied class boundary values are not in ascending order. |
7 Accuracy
The method used is believed to be stable.
The time taken by G01AEF increases with
K and
N. It also depends on the distribution of the sample observations.
9 Example
This example summarises a number of datasets. For each dataset the sample observations and optionally class boundary values are read. G01AEF is then called and the frequency distribution and largest and smallest observations printed.
9.1 Program Text
Program Text (g01aefe.f90)
9.2 Program Data
Program Data (g01aefe.d)
9.3 Program Results
Program Results (g01aefe.r)