NAG Library Routine Document

g01aef (frequency_table)

1
Purpose

g01aef constructs a frequency distribution of a variable, according to either user-supplied, or routine-calculated class boundary values.

2
Specification

Fortran Interface
Subroutine g01aef ( n, k, x, iclass, cb, ifreq, xmin, xmax, ifail)
Integer, Intent (In):: n, k, iclass
Integer, Intent (Inout):: ifail
Integer, Intent (Out):: ifreq(k)
Real (Kind=nag_wp), Intent (In):: x(n)
Real (Kind=nag_wp), Intent (Inout):: cb(k)
Real (Kind=nag_wp), Intent (Out):: xmin, xmax
C Header Interface
#include <nagmk26.h>
void  g01aef_ (const Integer *n, const Integer *k, const double x[], const Integer *iclass, double cb[], Integer ifreq[], double *xmin, double *xmax, Integer *ifail)

3
Description

The data consists of a sample of n observations of a continuous variable, denoted by xi, for i=1,2,,n. Let a = minx1,,xn  and b = maxx1,,xn .
g01aef constructs a frequency distribution with k>1 classes denoted by fi, for i=1,2,,k.
The boundary values may be either user-supplied, or routine-calculated, and are denoted by yj, for j=1,2,,k-1.
If the boundary values of the classes are to be routine-calculated, then they are determined in one of the following ways:
(a) if k>2, the range of x values is divided into k-2 intervals of equal length, and two extreme intervals, defined by the class boundary values y1,y2,,yk-1;
(b) if k=2, y1=12a+b.
However formed, the values y1,,yk-1 are assumed to be in ascending order. The class frequencies are formed with where [ means inclusive, and ) means exclusive. If the class boundary values are routine-calculated and k>2, then f1=fk=0, and y1 and yk-1 are chosen so that y1<a and yk-1>b.
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 y1 and yk-1 outlined above) and cause values very close to a class boundary to be assigned to the wrong class.

4
References

None.

5
Arguments

1:     n – IntegerInput
On entry: n, the number of observations.
Constraint: n1.
2:     k – IntegerInput
On entry: k, 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: k2.
3:     xn – Real (Kind=nag_wp) arrayInput
On entry: the sample of observations of the variable for which the frequency distribution is required, xi, for i=1,2,,n. 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 iclass=0, the class boundary values are to be calculated within the routine.
If iclass=1, they are user-supplied.
Constraint: iclass=0 or 1.
5:     cbk – Real (Kind=nag_wp) arrayInput/Output
On entry: if iclass=0, the elements of cb need not be assigned values, as g01aef calculates k-1 class boundary values.
If iclass=1, the first k-1 elements of cb must contain the class boundary values you supplied, in ascending order.
In both cases, the element cbk need not be assigned, as it is not used in the routine.
On exit: the first k-1 elements of cb contain the class boundary values in ascending order.
Constraint: if iclass=1, cbi<cbi+1, for i=1,2,,k-2.
6:     ifreqk – Integer arrayOutput
On exit: the elements of ifreq contain the frequencies in each class, fi, for i=1,2,,k. In particular ifreq1 contains the frequency of the class up to cb1, f1, and ifreqk contains the frequency of the class greater than cbk-1, fk.
7:     xmin – Real (Kind=nag_wp)Output
On exit: the smallest value in the sample, a.
8:     xmax – Real (Kind=nag_wp)Output
On exit: the largest value in the sample, b.
9:     ifail – IntegerInput/Output
On entry: ifail must be set to 0, -1 or 1. 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 -1 or 1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, if you are not familiar with this argument, the recommended value is 0. When the value -1 or 1 is used it is essential to test the value of ifail on exit.
On exit: ifail=0 unless the routine detects an error or a warning has been flagged (see Section 6).

6
Error Indicators and Warnings

If on entry ifail=0 or -1, explanatory error messages are output on the current error message unit (as defined by x04aaf).
Errors or warnings detected by the routine:
ifail=1
On entry, k=value.
Constraint: k2.
ifail=2
On entry, n=value.
Constraint: n1.
ifail=3
On entry, cbvalue=value and cbvalue=value.
Constraint: cbvalue<cbvalue.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 3.7 in How to Use the NAG Library and its Documentation for further information.

7
Accuracy

The method used is believed to be stable.

8
Parallelism and Performance

g01aef is not threaded in any implementation.

9
Further Comments

The time taken by g01aef increases with k and n. It also depends on the distribution of the sample observations.

10
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.

10.1
Program Text

Program Text (g01aefe.f90)

10.2
Program Data

Program Data (g01aefe.d)

10.3
Program Results

Program Results (g01aefe.r)