NAG Library Routine Document
g01asf
(plot_box_whisker)
1
Purpose
g01asf produces a specified number of box and whisker plots on a character printing device, with a chosen number of character positions in each direction.
2
Specification
Fortran Interface
Subroutine g01asf ( |
prt,
m,
n,
x,
ldx,
nstepx,
nstepy,
plot,
ldplot,
fivept,
iwork,
ifail) |
Integer, Intent (In) | :: |
m,
n(m),
ldx,
nstepx,
nstepy,
ldplot | Integer, Intent (Inout) | :: |
ifail | Integer, Intent (Out) | :: |
iwork(ldx) | Real (Kind=nag_wp), Intent (In) | :: |
x(ldx,m) | Real (Kind=nag_wp), Intent (Out) | :: |
fivept(5*m) | Character (1), Intent (In) | :: |
prt | Character (1), Intent (Inout) | :: |
plot(ldplot,nstepx) |
|
C Header Interface
#include nagmk26.h
void |
g01asf_ (
const char *prt,
const Integer *m,
const Integer n[],
const double x[],
const Integer *ldx,
const Integer *nstepx,
const Integer *nstepy,
char plot[],
const Integer *ldplot,
double fivept[],
Integer iwork[],
Integer *ifail,
const Charlen length_prt,
const Charlen length_plot) |
|
3
Description
g01asf produces a series of box and whisker plots representing data batches each of size , for . A box and whisker plot is a diagrammatic representation of the five-point summary of a data batch. The plot consists of a box spanning the hinges with the median indicated by a third line and two whiskers to represent the extreme values. The five-point summary is calculated internally and is returned in the workspace array.
The plot is returned in the character array
plot. The size of the plot may be controlled using the arguments
nstepx and
nstepy. Optionally the plot can be output to an external file, in which case output is directed to the current advisory message unit as defined by
x04abf.
An axis corresponding to the axis is drawn and annotated and data points are plotted to the nearest character position.
4
References
Erickson B H and Nosanchuk T A (1985) Understanding Data Open University Press, Milton Keynes
Tukey J W (1977) Exploratory Data Analysis Addison–Wesley
5
Arguments
- 1: – Character(1)Input
-
On entry: indicates whether the box and whisker plot is to be output to an external file.
- The box and whisker plot is not output to an external file.
- The box and whisker plot is output to the current advisory message unit as defined by x04abf.
Constraint:
or .
- 2: – IntegerInput
-
On entry: , the number of data batches that are to be represented.
Constraint:
.
- 3: – Integer arrayInput
-
On entry:
contains the number of observations in the
th batch,
, for
.
If the th batch is omitted from the plot.
Constraint:
at least one must be greater than or equal to , for .
- 4: – Real (Kind=nag_wp) arrayInput
-
On entry: the
th column of
x must contain the data for the
th batch, that is
must contain the
th observation of the
th batch, for
and
.
- 5: – IntegerInput
-
On entry: the first dimension of the array
x and the dimension of the array
iwork as declared in the (sub)program from which
g01asf is called.
Constraint:
.
- 6: – IntegerInput
-
On entry: the number of character positions to be plotted in the -direction.
Constraint:
.
- 7: – IntegerInput
-
On entry: the number of character positions to be plotted in the -direction.
Constraint:
.
- 8: – Character(1) arrayOutput
-
On exit: contains the box and whisker plots.
- 9: – IntegerInput
-
On entry: the first dimension of the array
plot as declared in the (sub)program from which
g01asf is called.
Constraint:
.
- 10: – Real (Kind=nag_wp) arrayOutput
-
On exit: , for , contains the five-point summary of the th batch.
- 11: – Integer arrayWorkspace
-
- 12: – 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, if you are not familiar with this argument, 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, at least one element of .
-
On entry, .
Constraint: .
On entry, is too small for plots.
-
On entry, .
Constraint: .
-
On entry, and .
Constraint: .
-
On entry, .
Constraint: or .
-
On entry, .
Constraint: .
-
On entry, all batches have .
-
On entry, the data values are all identical.
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
If the range of observations in a particular batch is too small to allow each item of the five-point summary to be plotted separately, then a sequence of stars are plotted at the median point of the batch to indicate that the full box-plot could not be plotted.
8
Parallelism and Performance
g01asf is not threaded in any implementation.
The time taken by g01asf increases with and , for .
10
Example
The following program produces a box and whisker plot for each one of data batches of sizes , , , and respectively and prints the box and whisker plots on the current advisory message unit.
10.1
Program Text
Program Text (g01asfe.f90)
10.2
Program Data
Program Data (g01asfe.d)
10.3
Program Results
Program Results (g01asfe.r)