NAG C Library Function Document

nag_glm_binomial (g02gbc)

1
Purpose

nag_glm_binomial (g02gbc) fits a generalized linear model with binomial errors.

2
Specification

#include <nag.h>
#include <nagg02.h>
void  nag_glm_binomial (Nag_Link link, Nag_IncludeMean mean, Integer n, const double x[], Integer tdx, Integer m, const Integer sx[], Integer ip, const double y[], const double binom_t[], const double wt[], const double offset[], double *dev, double *df, double b[], Integer *rank, double se[], double cov[], double v[], Integer tdv, double tol, Integer max_iter, Integer print_iter, const char *outfile, double eps, NagError *fail)

3
Description

A generalized linear model with binomial errors consists of the following elements:
(a) a set of n observations, yi, from a binomial distribution:
t y π y 1-π t-y .  
(b) X, a set of p independent variables for each observation, x1,x2,,xp.
(c) a linear model:
η = β j x j .  
(d) a link function η=gμ, linking the linear predictor, η and the mean of the distribution, μ=πt.
The possible link functions are:
(i) logistic link: η=logμt-μ,
(ii) probit link: η=Φ-1μt,
(iii) complementary log-log link: log-log1-μt.
(e) a measure of fit, the deviance:
i=1 n dev y i , μ ^ i = i=1 n 2 y i log y i μ ^ i + t i - y i log t i - y i t i - μ ^ i  
The linear arguments 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 .
nag_glm_binomial (g02gbc) finds a QR  decomposition of w 1 2 X , i.e.,
If R  is of full rank then β ^  is the solution to:
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 w 1 2 X .
This gives the solution
β ^ = P 1 D -1 Q * 0 0 I QT w 1 2 z  
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 arguments 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 Hw 1 2 z  for an n  by n  matrix H . The i th diagonal elements of H , h i , give a measure of the influence of the i th values of the independent variables on the fitted regression model. These are known as leverages.
The fitted values are given by μ ^ = g -1 η ^ .
nag_glm_binomial (g02gbc) also computes the deviance residuals, r :
r i = sign y i - μ ^ i dev y i , μ ^ 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., x i,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 variable with a known coefficient then this can be included in the model by using an offset, o :
η = o + β j x j .  
If the model is not of full rank the solution given will be only one of the possible solutions. Other estimates be may be obtained by applying constraints to the arguments. These solutions can be obtained by using nag_glm_tran_model (g02gkc) after using nag_glm_binomial (g02gbc).
Only certain linear combinations of the arguments will have unique estimates, these are known as estimable functions, these can be estimated and tested using nag_glm_est_func (g02gnc).
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

5
Arguments

On entry: indicates which link function is to be used.
link=Nag_Logistic
A logistic link is used.
link=Nag_Probit
A probit link is used.
link=Nag_Compl
A complementary log-log link is used.
Constraint: link=Nag_Logistic, Nag_Probit or Nag_Compl.
2:     mean Nag_IncludeMeanInput
On entry: indicates if a mean term is to be included.
mean=Nag_MeanInclude
A mean term, (intercept), will be included in the model.
mean=Nag_MeanZero
The model will pass through the origin, zero point.
Constraint: mean=Nag_MeanInclude or Nag_MeanZero.
3:     n IntegerInput
On entry: the number of observations, n .
Constraint: n2 .
4:     x[n×tdx] const doubleInput
On entry: x[i-1×tdx+j-1]  must contain the i th observation for the j th independent variable, for i=1,2,,n and j=1,2,,m.
5:     tdx IntegerInput
On entry: the stride separating matrix column elements in the array x.
Constraint: tdxm .
6:     m IntegerInput
On entry: the total number of independent variables.
Constraint: m1 .
7:     sx[m] const IntegerInput
On entry: indicates which independent variables are to be included in the model. If sx[j-1] > 0 , then the variable contained in the j th column of x is included in the regression model.
Constraints:
  • sx[j-1] 0 , for j=1,2,,m;
  • if mean=Nag_MeanInclude, then exactly ip-1  values of sx must be > 0 ;
  • if mean=Nag_MeanZero, then exactly ip values of sx must be > 0 .
8:     ip IntegerInput
On entry: the number p  of independent variables in the model, including the mean or intercept if present.
Constraint: ip>0 .
9:     y[n] const doubleInput
On entry: observations on the dependent variable, y i , for i=1,2,,n.
Constraint: 0.0 y[i-1] binom_t[i-1] , for i=1,2,,n.
10:   binom_t[n] const doubleInput
On entry: the binomial denominator, t .
Constraint: binom_t[i] 0.0 , for i=1,2,,n.
11:   wt[n] const doubleInput
On entry: if weighted estimates are required, then wt must contain the weights to be used. Otherwise wt need not be defined and may be set to NULL.
If wt[i-1] = 0.0 , then the i th observation is not included in the model, in which case the effective number of observations is the number of observations with positive weights.
If wt is NULL, then the effective number of observations is n .
Constraint: wtisNULL or wt[i-1] 0.0 , for i=1,2,,n.
12:   offset[n] const doubleInput
On entry: if an offset is required then offset must contain the values of the offset o . Otherwise offset must be supplied as NULL.
13:   dev double *Output
On exit: the deviance for the fitted model.
14:   df double *Output
On exit: the degrees of freedom associated with the deviance for the fitted model.
15:   b[ip] doubleOutput
On exit: b[i-1] , i = 1 , , ip  contains the estimates of the arguments of the generalized linear model, β ^ .
If mean=Nag_MeanInclude, then b[0]  will contain the estimate of the mean argument and b[i]  will contain the coefficient of the variable contained in column j  of x, where sx[j-1]  is the i th positive value in the array sx.
If mean=Nag_MeanZero, then b[i-1]  will contain the coefficient of the variable contained in column j  of x, where sx[j-1]  is the i th positive value in the array sx.
16:   rank Integer *Output
On exit: the rank of the independent variables.
If the model is of full rank, then rank=ip .
If the model is not of full rank, then rank is an estimate of the rank of the independent variables. rank is calculated as the number of singular values greater than eps ×  (largest singular value). It is possible for the SVD to be carried out but rank to be returned as ip.
17:   se[ip] doubleOutput
On exit: the standard errors of the linear arguments.
se[i-1]  contains the standard error of the parameter estimate in b[i-1] , for i=1,2,,ip.
18:   cov[ip×ip+1/2] doubleOutput
On exit: the ip × ip+1 / 2  elements of cov contain 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 ] , for i=0,1,,ip - 1 and j=i,,ip - 1.
19:   v[n×tdv] doubleOutput
On exit: auxiliary information on the fitted model.
v[i-1×tdv] , contains the linear predictor value, η i , for i=1,2,,n.
v[i-1×tdv+1] , contains the fitted value, μ ^ i , for i=1,2,,n.
v[i-1×tdv+2] , contains the variance standardization, τ i , for i=1,2,,n.
v[i-1×tdv+3] , contains the working weight, w i , for i=1,2,,n.
v[i-1×tdv+4] , contains the deviance residual, r i , for i=1,2,,n.
v[i-1×tdv+5] , contains the leverage, h i , for i=1,2,,n.
v[i-1×tdv+j-1] , for j=7,8,,ip + 6, contains the results of the QR  decomposition or the singular value decomposition.
If the model is not of full rank, i.e., rank<ip , then the first ip rows of columns 7  to ip+6  contain the P *  matrix.
20:   tdv IntegerInput
On entry: the stride separating matrix column elements in the array v.
Constraint: tdv ip + 6 .
21:   tol doubleInput
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 interactions 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.0 tol <  machine precision, then the function will use 10 ×  machine precision.
Constraint: tol0.0 .
22:   max_iter IntegerInput
On entry: the maximum number of iterations for the iterative weighted least squares.
If max_iter=0 , then a default value of 10 is used.
Constraint: max_iter0 .
On entry: indicates if the printing of information on the iterations is required and the rate at which printing is produced.
print_iter0
There is no printing.
print_iter>0
The following items are printed every print_iter iterations:
(i) the deviance,
(ii) the current estimates, and
(iii) if the weighted least squares equations are singular then this is indicated.
24:   outfile const char *Input
On entry: a null terminated character string giving the name of the file to which results should be printed. If outfile is NULL or an empty string then the stdout stream is used. Note that the file will be opened in the append mode.
25:   eps doubleInput
On entry: the value of eps is used to decide if the independent variables are of full rank and, if not, what the rank of the independent variables is. The smaller the value of eps the stricter the criterion for selecting the singular value decomposition.
If 0.0 eps <  machine precision, then the function will use machine precision instead.
Constraint: eps0.0 .
26:   fail NagError *Input/Output
The NAG error argument (see Section 3.7 in How to Use the NAG Library and its Documentation).

6
Error Indicators and Warnings

NE_2_INT_ARG_LT
On entry, tdv=value  while ip=value . These arguments must satisfy tdv ip + 6 .
On entry, tdx=value  while m=value . These arguments must satisfy tdxm .
NE_2_REAL_ARG_GT
On entry, y[value] = value while binom_t[value] = value. These arguments must satisfy y[value] binom_t[value] .
NE_ALLOC_FAIL
Dynamic memory allocation failed.
NE_BAD_PARAM
On entry, argument link had an illegal value.
On entry, argument mean had an illegal value.
NE_INT_ARG_LT
On entry, ip=value.
Constraint: ip1.
On entry, m=value.
Constraint: m1.
On entry, max_iter must not be less than 0: max_iter=value .
On entry, n=value.
Constraint: n2.
On entry, sx[value]  must not be less than 0: sx[value] = value.
NE_IP_GT_OBSERV
Parameter ip is greater than the effective number of observations.
NE_IP_INCOMP_SX
Parameter ip is incompatible with arguments mean and sx.
NE_LSQ_ITER_NOT_CONV
The iterative weighted least squares has failed to converge in max_iter=value  iterations. The value of max_iter could be increased but it may be advantageous to examine the convergence using the print_iter 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.
NE_NOT_APPEND_FILE
Cannot open file string  for appending.
NE_NOT_CLOSE_FILE
Cannot close file string .
NE_RANK_CHANGED
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.
NE_REAL_ARG_LT
On entry, binom_t[value]  must not be less than 0.0: binom_t[value] = value.
On entry, eps must not be less than 0.0: eps =value .
On entry, tol must not be less than 0.0: tol=value .
On entry, wt[value]  must not be less than 0.0: wt[value] = value.
On entry, y[value]  must not be less than 0.0: y[value] = value.
NE_SVD_NOT_CONV
The singular value decomposition has failed to converge.
NE_VALUE_AT_BOUNDARY_B
A fitted value is at a boundary, i.e., 0.0 or 1.0. This may occur if there are y values of 0.0 or binom_t and the model is too complex for the data. The model should be reformulated with, perhaps, some observations dropped.
NE_ZERO_DOF_ERROR
The degrees of freedom for error are 0. A saturated model has been fitted.

7
Accuracy

The accuracy is determined by tol as described in Section 5. As the adjusted deviance is a function of logμ  the accuracy of the β ^ 's will be a function of tol. tol should therefore be set to a smaller value than the accuracy required for β ^ .

8
Parallelism and Performance

nag_glm_binomial (g02gbc) is not threaded in any implementation.

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 (g02gbce.c)

10.2
Program Data

Program Data (g02gbce.d)

10.3
Program Results

Program Results (g02gbce.r)