The routine may be called by the names g02gnf or nagf_correg_glm_estfunc.
3Description
g02gnf computes the estimates of an estimable function for a generalized linear model which is not of full rank. It is intended for use after a call to g02gaf,g02gbf,g02gcforg02gdf. An estimable function is a linear combination of the parameters such that it has a unique estimate. For a full rank model all linear combinations of parameters are estimable.
In the case of a model not of full rank the routines use a singular value decomposition (SVD) to find the parameter estimates, , and their variance-covariance matrix. Given the upper triangular matrix obtained from the decomposition of the independent variables the SVD gives
where is a diagonal matrix with nonzero diagonal elements, being the rank of , and and are orthogonal matrices. This leads to a solution:
being the first columns of , i.e., ; being the first columns of , and being the first elements of .
Details of the SVD are made available in the form of the matrix :
A linear function of the parameters, , can be tested to see if it is estimable by computing . If is zero, then the function is estimable, if not; the function is not estimable. In practice is tested against some small quantity .
Given that is estimable it can be estimated by and its standard error calculated from the variance-covariance matrix of , , as
Also a statistic
can be computed. The distribution of will be approximately Normal.
4References
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
5Arguments
1: – IntegerInput
On entry: , the number of terms in the linear model.
Constraint:
.
2: – IntegerInput
On entry: , the rank of the dependent variables.
Constraint:
.
3: – Real (Kind=nag_wp) arrayInput
On entry: the ip values of the estimates of the parameters of the model, .
4: – Real (Kind=nag_wp) arrayInput
On entry: 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 and the parameter estimate given in , , is stored in .
On entry: the first dimension of the array v as declared in the (sub)program from which g02gnf is called.
Constraint:
.
7: – Real (Kind=nag_wp) arrayInput
On entry: , the linear function to be estimated.
8: – LogicalOutput
On exit: indicates if the function was estimable.
The function is estimable.
The function is not estimable and stat, sestat and z are not set.
9: – Real (Kind=nag_wp)Output
On exit: if , stat contains the estimate of the function,
10: – Real (Kind=nag_wp)Output
On exit: if , sestat contains the standard error of the estimate of the function, .
11: – Real (Kind=nag_wp)Output
On exit: if , z contains the statistic for the test of the function being equal to zero.
12: – Real (Kind=nag_wp)Input
On entry: the tolerance value used in the check for estimability, .
If then , where is the machine precision, is used instead.
13: – Real (Kind=nag_wp) arrayWorkspace
14: – IntegerInput/Output
On entry: ifail must be set to , or to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of means that an error message is printed while a value of means that it is not.
If halting is not appropriate, the value or is recommended. If message printing is undesirable, then the value is recommended. Otherwise, the value is recommended since useful values can be provided in some output arguments even when on exit. When the value or 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).
6Error 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:
Note: in some cases g02gnf may return useful information.
On entry, .
Constraint: .
On entry, .
Constraint: .
On entry, and .
Constraint: .
On entry, and .
Constraint: .
. In this case est is returned as true and all statistics are calculated.
Standard error of statistic ; this may be due to rounding errors if the standard error is very small or due to mis-specified inputs cov and f.
An unexpected error has been triggered by this routine. Please
contact NAG.
See Section 7 in the Introduction to the NAG Library FL Interface for further information.
Your licence key may have expired or may not have been installed correctly.
See Section 8 in the Introduction to the NAG Library FL Interface for further information.
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.
7Accuracy
The computations are believed to be stable.
8Parallelism and Performance
Background information to multithreading can be found in the Multithreading documentation.
g02gnf makes calls to BLAS and/or LAPACK routines, which may be threaded within the vendor library used by this implementation. Consult the documentation for the vendor library for further information.
Please consult the X06 Chapter Introduction for information on how to control and interrogate the OpenMP environment used within this routine. Please also consult the Users' Note for your implementation for any additional implementation-specific information.
9Further Comments
The value of estimable functions is independent of the solution chosen from the many possible solutions. While g02gnf may be used to estimate functions of the parameters of the model as computed by g02gkf, , these must be expressed in terms of the original parameters, . The relation between the two sets of parameters may not be straightforward.
10Example
A loglinear model is fitted to a contingency table by g02gcf. The model consists of terms for rows and columns. The table is:
The number of functions to be tested is read in, then the linear functions themselves are read in and tested with g02gnf. The results of g02gnf are printed.