G02GKF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G02GKF

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

G02GKF calculates the estimates of the parameters of a generalized linear model for given constraints from the singular value decomposition results.

2  Specification

SUBROUTINE G02GKF ( IP, ICONST, V, LDV, C, LDC, B, S, SE, COV, WK, IFAIL)
INTEGER  IP, ICONST, LDV, LDC, IFAIL
REAL (KIND=nag_wp)  V(LDV,IP+7), C(LDC,ICONST), B(IP), S, SE(IP), COV(IP*(IP+1)/2), WK(2*IP*IP+IP*ICONST+2*ICONST*ICONST+4*ICONST)

3  Description

G02GKF computes the estimates given a set of linear constraints for a generalized linear model which is not of full rank. It is intended for use after a call to G02GAF, G02GBF, G02GCF or G02GDF.
In the case of a model not of full rank the routines use a singular value decomposition to find the parameter estimates, β^svd, and their variance-covariance matrix. Details of the SVD are made available in the form of the matrix P*:
P*= D-1 P1T P0T
as described by G02GAF, G02GBF, G02GCF and G02GDF. Alternative solutions can be formed by imposing constraints on the parameters. If there are p parameters and the rank of the model is k then nc=p-k constraints will have to be imposed to obtain a unique solution.
Let C be a p by nc matrix of constraints, such that
CTβ=0,
then the new parameter estimates β^c are given by:
β^c =Aβ^svd =I-P0CTP0-1β^svd,   where ​I​ is the identity matrix,
and the variance-covariance matrix is given by
AP1D-2 P1T AT
provided CTP0-1 exists.

4  References

Golub G H and Van Loan C F (1996) Matrix Computations (3rd Edition) Johns Hopkins University Press, Baltimore
McCullagh P and Nelder J A (1983) Generalized Linear Models Chapman and Hall
Searle S R (1971) Linear Models Wiley

5  Parameters

1:     IP – INTEGERInput
On entry: p, the number of terms in the linear model.
Constraint: IP1.
2:     ICONST – INTEGERInput
On entry: the number of constraints to be imposed on the parameters, nc.
Constraint: 0<ICONST<IP.
3:     V(LDV,IP+7) – REAL (KIND=nag_wp) arrayInput
On entry: the array V as returned by G02GAF, G02GBF, G02GCF or G02GDF.
4:     LDV – INTEGERInput
On entry: the first dimension of the array V as declared in the (sub)program from which G02GKF is called.
Constraint: LDVIP.
LDV should be as supplied to G02GAF, G02GBF, G02GCF or G02GDF
5:     C(LDC,ICONST) – REAL (KIND=nag_wp) arrayInput
On entry: contains the ICONST constraints stored by column, i.e., the ith constraint is stored in the ith column of C.
6:     LDC – INTEGERInput
On entry: the first dimension of the array C as declared in the (sub)program from which G02GKF is called.
Constraint: LDCIP.
7:     B(IP) – REAL (KIND=nag_wp) arrayInput/Output
On entry: the parameter estimates computed by using the singular value decomposition, β^svd.
On exit: the parameter estimates of the parameters with the constraints imposed, β^c.
8:     S – REAL (KIND=nag_wp)Input
On entry: the estimate of the scale parameter.
For results from G02GAF and G02GDF then S is the scale parameter for the model.
For results from G02GBF and G02GCF then S should be set to 1.0.
Constraint: S>0.0.
9:     SE(IP) – REAL (KIND=nag_wp) arrayOutput
On exit: the standard error of the parameter estimates in B.
10:   COV(IP×IP+1/2) – REAL (KIND=nag_wp) arrayOutput
On exit: the upper triangular part of the variance-covariance matrix of the IP parameter estimates given in B. They are stored packed by column, i.e., the covariance between the parameter estimate given in Bi and the parameter estimate given in Bj, ji, is stored in COVj×j-1/2+i.
11:   WK(2×IP×IP+IP×ICONST+2×ICONST×ICONST+4×ICONST) – REAL (KIND=nag_wp) arrayWorkspace
Note:  a simple upper bound for the size of the workspace is 5×IP×IP+4×IP.
12:   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, if you are not familiar with this parameter, 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,IP<1.
orICONSTIP,
orICONST0,
orLDV<IP,
orLDC<IP,
orS0.0.
IFAIL=2
C does not give a model of full rank.

7  Accuracy

It should be noted that due to rounding errors a parameter that should be zero when the constraints have been imposed may be returned as a value of order machine precision.

8  Further Comments

G02GKF is intended for use in situations in which dummy (01) variables have been used such as in the analysis of designed experiments when you do not wish to change the parameters of the model to give a full rank model. The routine is not intended for situations in which the relationships between the independent variables are only approximate.

9  Example

A loglinear model is fitted to a 3 by 5 contingency table by G02GCF. The model consists of terms for rows and columns. The table is
141 67 114 79 39 131 66 143 72 35 36 14 38 28 16 .
The constraints that the sum of row effects and the sum of column effects are zero are then read in and the parameter estimates with these constraints imposed are computed by G02GKF and printed.

9.1  Program Text

Program Text (g02gkfe.f90)

9.2  Program Data

Program Data (g02gkfe.d)

9.3  Program Results

Program Results (g02gkfe.r)


G02GKF (PDF version)
G02 Chapter Contents
G02 Chapter Introduction
NAG Library Manual

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