G04DAF (PDF version)
G04 Chapter Contents
G04 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G04DAF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G04DAF computes sum of squares for a user-defined contrast between means.

2  Specification

SUBROUTINE G04DAF ( NT, TMEAN, IREP, RMS, RDF, NC, CT, LDCT, EST, TABL, LDTABL, TOL, USETX, TX, IFAIL)
INTEGER  NT, IREP(NT), NC, LDCT, LDTABL, IFAIL
REAL (KIND=nag_wp)  TMEAN(NT), RMS, RDF, CT(LDCT,NC), EST(NC), TABL(LDTABL,*), TOL, TX(NT)
LOGICAL  USETX

3  Description

In the analysis of designed experiments the first stage is to compute the basic analysis of variance table, the estimate of the error variance (the residual or error mean square), σ^2, and the (variance ratio) F-statistic for the t treatments. If this F-test is significant then the second stage of the analysis is to explore which treatments are significantly different.
If there is a structure to the treatments then this may lead to hypotheses that can be defined before the analysis and tested using linear contrasts. For example, if the treatments were three different fixed temperatures, say 18, 20 and 22, and an uncontrolled temperature (denoted by N) then the following contrasts might be of interest.
18 20 22 N a 13 13 13 -1 b -1 0 1 0
The first represents the average difference between the controlled temperatures and the uncontrolled temperature. The second represents the linear effect of an increasing fixed temperature.
For a randomized complete block design or a completely randomized design, let the treatment means be τ^i, i=1,2,,t, and let the jth contrast be defined by λij, i=1,2,,t, then the estimate of the contrast is simply:
Λj=i=1tτ^iλij
and the sum of squares for the contrast is:
SSj=Λj2 i=1tλij2/ni (1)
where ni is the number of observations for the ith treatment. Such a contrast has one degree of freedom so that the appropriate F-statistic is SSj/σ^2.
The two contrasts λij and λij are orthogonal if i=1tλijλij=0 and the contrast λij is orthogonal to the overall mean if i=1tλij=0. In practice these sums will be tested against a small quantity, ε. If each of a set of contrasts is orthogonal to the mean and they are all mutually orthogonal then the contrasts provide a partition of the treatment sum of squares into independent components. Hence the resulting F-tests are independent.
If the treatments come from a design in which treatments are not orthogonal to blocks then the sum of squares for a contrast is given by:
SSj=ΛjΛj* i=1tλij2/ni (2)
where
Λj*=i= 1tτi*λij
with τi*, for i=1,2,,t, being adjusted treatment means computed by first eliminating blocks then computing the treatment means from the block adjusted observations without taking into account the non-orthogonality between treatments and blocks. For further details see John (1987) and Morgan (1993).

4  References

Cochran W G and Cox G M (1957) Experimental Designs Wiley
John J A (1987) Cyclic Designs Chapman and Hall
Morgan G W (1993) Analysis of variance using the NAG Fortran Library: Examples from Cochran and Cox NAG Technical Report TR 3/93 NAG Ltd, Oxford
Winer B J (1970) Statistical Principles in Experimental Design McGraw–Hill

5  Parameters

1:     NT – INTEGERInput
On entry: t, the number of treatment means.
Constraint: NT2.
2:     TMEAN(NT) – REAL (KIND=nag_wp) arrayInput
On entry: the treatment means, τ^i, for i=1,2,,t.
3:     IREP(NT) – INTEGER arrayInput
On entry: the replication for each treatment mean, ni, for i=1,2,,t.
4:     RMS – REAL (KIND=nag_wp)Input
On entry: the residual mean square, σ^2.
Constraint: RMS>0.0.
5:     RDF – REAL (KIND=nag_wp)Input
On entry: the residual degrees of freedom.
Constraint: RDF1.0.
6:     NC – INTEGERInput
On entry: the number of contrasts.
Constraint: NC1.
7:     CT(LDCT,NC) – REAL (KIND=nag_wp) arrayInput
On entry: the columns of CT must contain the NC contrasts, that is CTij must contain λij, for i=1,2,,t and j=1,2,,NC.
8:     LDCT – INTEGERInput
On entry: the first dimension of the array CT as declared in the (sub)program from which G04DAF is called.
Constraint: LDCTNT.
9:     EST(NC) – REAL (KIND=nag_wp) arrayOutput
On exit: the estimates of the contrast, Λj, for j=1,2,,NC.
10:   TABL(LDTABL,*) – REAL (KIND=nag_wp) arrayInput/Output
Note: the second dimension of the array TABL must be at least 5.
On entry: the elements of TABL that are not referenced as described below remain unchanged.
On exit: the rows of the analysis of variance table for the contrasts. For each row column 1 contains the degrees of freedom, column 2 contains the sum of squares, column 3 contains the mean square, column 4 the F-statistic and column 5 the significance level for the contrast. Note that the degrees of freedom are always one and so the mean square equals the sum of squares.
11:   LDTABL – INTEGERInput
On entry: the first dimension of the array TABL as declared in the (sub)program from which G04DAF is called.
Constraint: LDTABLNC.
12:   TOL – REAL (KIND=nag_wp)Input
On entry: the tolerance, ε used to check if the contrasts are orthogonal and if they are orthogonal to the mean. If TOL0.0 the value machine precision is used.
13:   USETX – LOGICALInput
On entry: if USETX=.TRUE. the means τi* are provided in TX and the formula (2) is used instead of formula (1).
If USETX=.FALSE. formula (1) is used and TX is not referenced.
14:   TX(NT) – REAL (KIND=nag_wp) arrayInput
On entry: if USETX=.TRUE. TX must contain the means τi*, for i=1,2,,t.
15:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. 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 -1​ or ​1 is recommended. If the output of error messages is undesirable, then the value 1 is recommended. Otherwise, because for this routine the values of the output parameters may be useful even if IFAIL0 on exit, the recommended value is -1. 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).
Note: G04DAF may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the routine:
IFAIL=1
On entry,NC<1,
orNT<2,
orLDCT<NT,
orLDTABL<NC,
orRMS0.0,
orRDF<1.0.
IFAIL=2
On entry,a contrast is not orthogonal to the mean,
orat least two contrasts are not orthogonal.
If IFAIL=2 full results are returned but they should be interpreted with care.

7  Accuracy

The computations are stable.

8  Further Comments

If the treatments have a factorial structure G04CAF should be used and if the treatments have no structure the means can be compared using G04DBF.

9  Example

The data is given in Morgan (1993) and is for a completely randomized experiment on potato scab with seven treatments representing amounts of sulphur applied, whether the application was in spring or autumn and a control treatment. The one-way anova is computed using G02BBF. Two contrasts are analysed, one comparing the control with use of sulphur, the other comparing spring with autumn application.

9.1  Program Text

Program Text (g04dafe.f90)

9.2  Program Data

Program Data (g04dafe.d)

9.3  Program Results

Program Results (g04dafe.r)


G04DAF (PDF version)
G04 Chapter Contents
G04 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012