NAG FL Interface
g02gcf (glm_​poisson)

Settings help

FL Name Style:


FL Specification Language:


1 Purpose

g02gcf fits a generalized linear model with Poisson errors.

2 Specification

Fortran Interface
Subroutine g02gcf ( link, mean, offset, weight, n, x, ldx, m, isx, ip, y, wt, a, dev, idf, b, irank, se, cov, v, ldv, tol, maxit, iprint, eps, wk, ifail)
Integer, Intent (In) :: n, ldx, m, isx(m), ip, ldv, maxit, iprint
Integer, Intent (Inout) :: ifail
Integer, Intent (Out) :: idf, irank
Real (Kind=nag_wp), Intent (In) :: x(ldx,m), y(n), wt(*), a, tol, eps
Real (Kind=nag_wp), Intent (Inout) :: v(ldv,ip+7)
Real (Kind=nag_wp), Intent (Out) :: dev, b(ip), se(ip), cov(ip*(ip+1)/2), wk((ip*ip+3*ip+22)/2)
Character (1), Intent (In) :: link, mean, offset, weight
C Header Interface
#include <nag.h>
void  g02gcf_ (const char *link, const char *mean, const char *offset, const char *weight, const Integer *n, const double x[], const Integer *ldx, const Integer *m, const Integer isx[], const Integer *ip, const double y[], const double wt[], const double *a, double *dev, Integer *idf, double b[], Integer *irank, double se[], double cov[], double v[], const Integer *ldv, const double *tol, const Integer *maxit, const Integer *iprint, const double *eps, double wk[], Integer *ifail, const Charlen length_link, const Charlen length_mean, const Charlen length_offset, const Charlen length_weight)
The routine may be called by the names g02gcf or nagf_correg_glm_poisson.

3 Description

A generalized linear model with Poisson errors consists of the following elements:
  1. (a)a set of n observations, yi, from a Poisson distribution:
    μye-μ y! .  
  2. (b)X, a set of p independent variables for each observation, x1,x2,,xp.
  3. (c)a linear model:
    η=βjxj.  
  4. (d)a link between the linear predictor, η, and the mean of the distribution, μ, η=g(μ). The possible link functions are:
    1. (i)exponent link: η=μa, for a constant a,
    2. (ii)identity link: η=μ,
    3. (iii)log link: η=logμ,
    4. (iv)square root link: η=μ,
    5. (v)reciprocal link: η=1μ .
  5. (e)a measure of fit, the deviance:
    i=1ndev(yi,μ^i)=i=1n2 (yilog(yiμ^i)-(yi-μ^i)) .  
The linear parameters are estimated by iterative weighted least squares. An adjusted dependent variable, z, is formed:
z=η+(y-μ)dη dμ  
and a working weight, w,
w-1= (τddη dμ ) 2,  
where τ=μ.
At each iteration an approximation to the estimate of β, β^, is found by the weighted least squares regression of z on X with weights w.
g02gcf finds a QR decomposition of w1/2X, i.e., w1/2X=QR where R is a p×p triangular matrix and Q is an n×p column orthogonal matrix.
If R is of full rank, then β^ is the solution to:
Rβ^=QTw1/2z.  
If R is not of full rank a solution is obtained by means of a singular value decomposition (SVD) of R.
R=Q* ( D 0 0 0 ) PT,  
where D is a k×k diagonal matrix with nonzero diagonal elements, k being the rank of R and w1/2X.
This gives the solution
β^=P1D-1 ( Q* 0 0 I ) QTw1/2z,  
P1 being the first k columns of P, i.e., P=(P1P0).
The iterations are continued until there is only a small change in the deviance.
The initial values for the algorithm are obtained by taking
η^=g(y).  
The fit of the model can be assessed by examining and testing the deviance, in particular by comparing the difference in deviance between nested models, i.e., when one model is a sub-model of the other. The difference in deviance between two nested models has, asymptotically, a χ2-distribution with degrees of freedom given by the difference in the degrees of freedom associated with the two deviances.
The parameters estimates, β^, are asymptotically Normally distributed with variance-covariance matrix
The residuals and influence statistics can also be examined.
The estimated linear predictor η^=Xβ^, can be written as Hw1/2z for an n×n matrix H. The ith diagonal elements of H, hi, give a measure of the influence of the ith values of the independent variables on the fitted regression model. These are known as leverages.
The fitted values are given by μ^=g-1(η^).
g02gcf also computes the deviance residuals, r:
ri=sign(yi-μ^i)dev(yi,μ^i).  
An option allows prior weights to be used with the model.
In many linear regression models the first term is taken as a mean term or an intercept, i.e., xi,1=1, for i=1,2,,n. This is provided as an option.
Often only some of the possible independent variables are included in a model; the facility to select variables to be included in the model is provided.
If part of the linear predictor can be represented by a variables with a known coefficient then this can be included in the model by using an offset, o:
η=o+βjxj.  
If the model is not of full rank the solution given will be only one of the possible solutions. Other estimates may be obtained by applying constraints to the parameters. These solutions can be obtained by using g02gkf after using g02gcf. Only certain linear combinations of the parameters will have unique estimates, these are known as estimable functions, these can be estimated and tested using g02gnf.
Details of the SVD are made available in the form of the matrix P*:
P*=( D-1 P1T P0T ) .  
The generalized linear model with Poisson errors can be used to model contingency table data; see Cook and Weisberg (1982) and McCullagh and Nelder (1983).

4 References

Cook R D and Weisberg S (1982) Residuals and Influence in Regression Chapman and Hall
McCullagh P and Nelder J A (1983) Generalized Linear Models Chapman and Hall
Plackett R L (1974) The Analysis of Categorical Data Griffin

5 Arguments

On entry: indicates which link function is to be used.
link='E'
An exponent link is used.
link='I'
An identity link is used.
link='L'
A log link is used.
link='S'
A square root link is used.
link='R'
A reciprocal link is used.
Constraint: link='E', 'I', 'L', 'S' or 'R'.
2: mean Character(1) Input
On entry: indicates if a mean term is to be included.
mean='M'
A mean term, intercept, will be included in the model.
mean='Z'
The model will pass through the origin, zero-point.
Constraint: mean='M' or 'Z'.
3: offset Character(1) Input
On entry: indicates if an offset is required.
offset='Y'
An offset is required and the offsets must be supplied in the seventh column of v.
offset='N'
No offset is required.
Constraint: offset='Y' or 'N'.
4: weight Character(1) Input
On entry: indicates if prior weights are to be used.
weight='U'
No prior weights are used.
weight='W'
Prior weights are used and weights must be supplied in wt.
Constraint: weight='U' or 'W'.
5: n Integer Input
On entry: n, the number of observations.
Constraint: n2.
6: x(ldx,m) Real (Kind=nag_wp) array Input
On entry: the matrix of all possible independent variables. x(i,j) must contain the ijth element of x, for i=1,2,,n and j=1,2,,m.
7: ldx Integer Input
On entry: the first dimension of the array x as declared in the (sub)program from which g02gcf is called.
Constraint: ldxn.
8: m Integer Input
On entry: m, the total number of independent variables.
Constraint: m1.
9: isx(m) Integer array Input
On entry: indicates which independent variables are to be included in the model.
If isx(j)>0, the variable contained in the jth column of x is included in the regression model.
Constraints:
  • isx(j)0, for j=1,2,,m;
  • if mean='M', exactly ip-1 values of isx must be >0;
  • if mean='Z', exactly ip values of isx must be >0.
10: ip Integer Input
On entry: the number of independent variables in the model, including the mean or intercept if present.
Constraint: ip>0.
11: y(n) Real (Kind=nag_wp) array Input
On entry: y, observations on the dependent variable.
Constraint: y(i)0.0, for i=1,2,,n.
12: wt(*) Real (Kind=nag_wp) array Input
Note: the dimension of the array wt must be at least n if weight='W'.
On entry: if weight='W' wt must contain the weights to be used with the model.
If wt(i)=0.0, the ith observation is not included in the model, in which case the effective number of observations is the number of observations with nonzero weights.
If weight='U', wt is not referenced and the effective number of observations is n.
Constraint: if weight='W', wt(i)0.0, for i=1,2,,n.
13: a Real (Kind=nag_wp) Input
On entry: if link='E', a must contain the power of the exponential.
If link'E', a is not referenced.
Constraint: if a0.0, link='E'.
14: dev Real (Kind=nag_wp) Output
On exit: the deviance for the fitted model.
15: idf Integer Output
On exit: the degrees of freedom asociated with the deviance for the fitted model.
16: b(ip) Real (Kind=nag_wp) array Output
On exit: the estimates of the parameters of the generalized linear model, β^.
If mean='M', the first element of b will contain the estimate of the mean parameter and b(i+1) will contain the coefficient of the variable contained in column j of x, where isx(j) is the ith positive value in the array isx.
If mean='Z', b(i) will contain the coefficient of the variable contained in column j of x, where isx(j) is the ith positive value in the array isx.
17: irank Integer Output
On exit: the rank of the independent variables.
If the model is of full rank, irank=ip.
If the model is not of full rank, irank is an estimate of the rank of the independent variables. irank is calculated as the number of singular values greater that eps×(largest singular value). It is possible for the SVD to be carried out but for irank to be returned as ip.
18: se(ip) Real (Kind=nag_wp) array Output
On exit: the standard errors of the linear parameters.
se(i) contains the standard error of the parameter estimate in b(i), for i=1,2,,ip.
19: cov(ip×(ip+1)/2) Real (Kind=nag_wp) array Output
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 b(i) and the parameter estimate given in b(j), ji, is stored in cov((j×(j-1)/2+i)).
20: v(ldv,ip+7) Real (Kind=nag_wp) array Input/Output
On entry: if offset='N', v need not be set.
If offset='Y', v(i,7), for i=1,2,,n, must contain the offset values oi. All other values need not be set.
On exit: auxiliary information on the fitted model.
v(i,1) contains the linear predictor value, ηi, for i=1,2,,n.
v(i,2) contains the fitted value, μ^i, for i=1,2,,n.
v(i,3) contains the variance standardization, 1τi, for i=1,2,,n.
v(i,4) contains the square root of the working weight, wi12, for i=1,2,,n.
v(i,5) contains the deviance residual, ri, for i=1,2,,n.
v(i,6) contains the leverage, hi, for i=1,2,,n.
v(i,7) contains the offset, oi, for i=1,2,,n. If offset='N', all values will be zero.
v(i,j) for j=8,,ip+7, contains the results of the QR decomposition or the singular value decomposition.
If the model is not of full rank, i.e., irank<ip, the first ip rows of columns 8 to ip+7 contain the P* matrix.
21: ldv Integer Input
On entry: the first dimension of the array v as declared in the (sub)program from which g02gcf is called.
Constraint: ldvn.
22: tol Real (Kind=nag_wp) Input
On entry: indicates the accuracy required for the fit of the model.
The iterative weighted least squares procedure is deemed to have converged if the absolute change in deviance between iterations is less than tol×(1.0+Current Deviance). This is approximately an absolute precision if the deviance is small and a relative precision if the deviance is large.
If 0.0tol<machine precision, the routine will use 10×machine precision instead.
Constraint: tol0.0.
23: maxit Integer Input
On entry: the maximum number of iterations for the iterative weighted least squares.
If maxit=0, a default value of 10 is used.
Constraint: maxit0.
24: iprint Integer Input
On entry: indicates if the printing of information on the iterations is required.
iprint0
There is no printing.
iprint>0
Every iprint iteration, the following are printed:
  • the deviance;
  • the current estimates;
  • and if the weighted least squares equations are singular, then this is indicated.
When printing occurs the output is directed to the current advisory message unit (see x04abf).
25: eps Real (Kind=nag_wp) Input
On entry: the value of eps is used to decide if the independent variables are of full rank and, if not, what is the rank of the independent variables. The smaller the value of eps the stricter the criterion for selecting the singular value decomposition.
If 0.0eps<machine precision, the routine will use machine precision instead.
Constraint: eps0.0.
26: wk((ip×ip+3×ip+22)/2) Real (Kind=nag_wp) array Workspace
27: ifail Integer Input/Output
On entry: ifail must be set to 0, −1 or 1 to set behaviour on detection of an error; these values have no effect when no error is detected.
A value of 0 causes the printing of an error message and program execution will be halted; otherwise program execution continues. A value of −1 means that an error message is printed while a value of 1 means that it is not.
If halting is not appropriate, the value −1 or 1 is recommended. If message printing is undesirable, then the value 1 is recommended. Otherwise, the value −1 is recommended since useful values can be provided in some output arguments even when ifail0 on exit. 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:
Note: in some cases g02gcf may return useful information.
ifail=1
On entry, a=0.0 and link='E'.
Constraint: if link='E', a0.0.
On entry, eps=value.
Constraint: eps0.0.
On entry, ip=value.
Constraint: ip1.
On entry, ldv=value and n=value.
Constraint: ldvn.
On entry, ldx=value and n=value.
Constraint: ldxn.
On entry, link=value.
Constraint: link='E', 'I', 'L', 'S' or 'R'.
On entry, m=value.
Constraint: m1.
On entry, maxit=value.
Constraint: maxit0.
On entry, mean=value.
Constraint: mean='M' or 'Z'.
On entry, n=value.
Constraint: n2.
On entry, offset=value.
Constraint: offset='Y' or 'N'.
On entry, tol=value.
Constraint: tol0.0.
On entry, weight=value.
Constraint: weight='W' or 'U'.
ifail=2
On entry, wt(value)<0.0.
Constraint: wt(i)0.0, for i=1,2,,n.
ifail=3
Number of requested x-variables greater than n.
On entry, ip incompatible with number of nonzero values of isx: ip=value.
On entry, isx(value)<0.
Constraint: isx(j)0.0, for j=1,2,,m.
ifail=4
On entry, y(value)=value.
Constraint: y(i)0.0, for i=1,2,,n.
ifail=5
A fitted value is at the boundary, i.e., μ^=0.0. This may occur if there are y values of 0.0 and the model is too complex for the data. The model should be reformulated with, perhaps, some observations dropped.
ifail=6
SVD solution failed to converge.
ifail=7
The iterative weighted least squares has failed to converge in maxit (or default 10) iterations. The value of maxit could be increased but it may be advantageous to examine the convergence using the iprint option. This may indicate that the convergence is slow because the solution is at a boundary in which case it may be better to reformulate the model.
ifail=8
The rank of the model has changed during the weighted least squares iterations. The estimate for β returned may be reasonable, but you should check how the deviance has changed during iterations.
ifail=9
The degrees of freedom for error are 0. A saturated model has been fitted.
ifail=-99
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.
ifail=-399
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.
ifail=-999
Dynamic memory allocation failed.
See Section 9 in the Introduction to the NAG Library FL Interface for further information.

7 Accuracy

The accuracy depends on the value of tol as described in Section 5. As the deviance is a function of logμ the accuracy of the β^ will only be a function of tol. tol should, therefore, be set smaller than the accuracy required for β^.

8 Parallelism and Performance

Background information to multithreading can be found in the Multithreading documentation.
g02gcf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g02gcf 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.

9 Further Comments

None.

10 Example

A 3×5 contingency table given by Plackett (1974) is analysed by fitting terms for rows and columns. The table is:
141 67 114 79 39 131 66 143 72 35 36 14 38 28 16 .  

10.1 Program Text

Program Text (g02gcfe.f90)

10.2 Program Data

Program Data (g02gcfe.d)

10.3 Program Results

Program Results (g02gcfe.r)