NAG FL Interface
g02gbf (glm_​binomial)

1 Purpose

g02gbf fits a generalized linear model with binomial errors.

2 Specification

Fortran Interface
Subroutine g02gbf ( link, mean, offset, weight, n, x, ldx, m, isx, ip, y, t, wt, 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), t(n), wt(*), 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  g02gbf_ (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 t[], const double wt[], 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 g02gbf or nagf_correg_glm_binomial.

3 Description

A generalized linear model with binomial errors consists of the following elements:
  1. (a)a set of n observations, yi, from a binomial distribution:
    t y πy1-πt-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, μ=πt, the link function, η=gμ. The possible link functions are:
    1. (i)logistic link: η=logμ t-μ ,
    2. (ii)probit link: η=Φ-1 μt ,
    3. (iii)complementary log-log link: log-log1-μt .
  5. (e)a measure of fit, the deviance:
    i=1ndevyi,μ^i=i=1n2 yilogyiμ^i+ti-yilog ti-yi ti-μ^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= τdη dμ 2,   where ​τ=tμt-μ .  
At each iteration an approximation to the estimate of β, β^, is found by the weighted least squares regression of z on X with weights w.
g02gbf finds a QR decomposition of w1/2X, i.e., w1/2X=QR where R is a p by p triangular matrix and Q is an n by 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 by 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
η^=gy.  
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 by 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 sometimes known as leverages.
The fitted values are given by μ^=g-1η^.
g02gbf also computes the deviance residuals, r:
ri=signyi-μ^idevyi,μ^i.  
An option allows the use of prior weights in 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 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 g02gbf. Only certain linear combinations of the parameters will have unique estimates, these are known as estimable functions and 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 .  

4 References

Cook R D and Weisberg S (1982) Residuals and Influence in Regression Chapman and Hall
Cox D R (1983) Analysis of Binary Data Chapman and Hall
McCullagh P and Nelder J A (1983) Generalized Linear Models Chapman and Hall

5 Arguments

On entry: indicates which link function is to be used.
link='G'
A logistic link is used.
link='P'
A probit link is used.
link='C'
A complementary log-log link is used.
Constraint: link='G', 'P' or 'C'.
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: xldxm Real (Kind=nag_wp) array Input
On entry: xij must contain the ith observation for the jth independent variable, 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 g02gbf is called.
Constraint: ldxn.
8: m Integer Input
On entry: m, the total number of independent variables.
Constraint: m1.
9: isxm Integer array Input
On entry: indicates which independent variables are to be included in the model.
If isxj>0, the variable contained in the jth column of x is included in the regression model.
Constraints:
  • isxj0, 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: yn Real (Kind=nag_wp) array Input
On entry: the observations on the dependent variable, yi, for i=1,2,,n.
Constraint: 0.0yiti, for i=1,2,,n.
12: tn Real (Kind=nag_wp) array Input
On entry: t, the binomial denominator.
Constraint: ti0.0, for i=1,2,,n.
13: 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 wti=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', wti0.0, for i=1,2,,n.
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 associated with the deviance for the fitted model.
16: bip 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 bi+1 will contain the coefficient of the variable contained in column j of x, where isxj is the ith positive value in the array isx.
If mean='Z', bi will contain the coefficient of the variable contained in column j of x, where isxj 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: seip Real (Kind=nag_wp) array Output
On exit: the standard errors of the linear parameters.
sei contains the standard error of the parameter estimate in bi, for i=1,2,,ip.
19: covip×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 in packed form 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.
20: vldvip+7 Real (Kind=nag_wp) array Input/Output
On entry: if offset='N', v need not be set.
If offset='Y', vi7, 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.
vi1 contains the linear predictor value, ηi, for i=1,2,,n.
vi2 contains the fitted value, μ^i, for i=1,2,,n.
vi3 contains the variance standardization, 1τi, for i=1,2,,n.
vi4 contains the square root of the working weight, wi12, for i=1,2,,n.
vi5 contains the deviance residual, ri, for i=1,2,,n.
vi6 contains the leverage, hi, for i=1,2,,n.
vi7 contains the offset, oi, for i=1,2,,n. If offset='N', all values will be zero.
vij 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 g02gbf 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
The following is printed every iprint iterations:
  • 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: wkip×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. If you are unfamiliar with this argument you should refer to Section 4 in the Introduction to the NAG Library FL Interface 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 arguments 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).
Errors or warnings detected by the routine:
Note: in some cases g02gbf may return useful information.
ifail=1
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='G', 'P' or 'C'.
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, wtvalue<0.0.
Constraint: wti0.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, isxvalue<0.
Constraint: isxj0.0, for j=1,2,,m.
ifail=4
On entry, tvalue=value.
Constraint: ti0, for i=1,2,,n.
ifail=5
On entry, yvalue=value and tvalue=value.
Constraint: 0.0yiti, for i=1,2,,n.
ifail=6
A fitted value is at the boundary, i.e., 0.0 or 1.0. This may occur if there are y values of 0.0 or t and the model is too complex for the data. The model should be reformulated with, perhaps, some observations dropped.
ifail=7
SVD solution failed to converge.
ifail=8
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=9
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=10
Degrees of freedom for error are 0.
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 will depend on the value of tol as described in Section 5. As the deviance is a function of logμ the accuracy of the β^ will be only a function of tol, so tol should be set smaller than the required accuracy for β^.

8 Parallelism and Performance

g02gbf is threaded by NAG for parallel execution in multithreaded implementations of the NAG Library.
g02gbf 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 linear trend x=-1,0,1 is fitted to data relating the incidence of carriers of Streptococcus pyogenes to size of tonsils. The data is described in Cox (1983).

10.1 Program Text

Program Text (g02gbfe.f90)

10.2 Program Data

Program Data (g02gbfe.d)

10.3 Program Results

Program Results (g02gbfe.r)