hide long namesshow long names
hide short namesshow short names
Integer type:  int32  int64  nag_int  show int32  show int32  show int64  show int64  show nag_int  show nag_int

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

NAG Toolbox: nag_correg_glm_binomial (g02gb)

 Contents

    1  Purpose
    2  Syntax
    7  Accuracy
    9  Example

Purpose

nag_correg_glm_binomial (g02gb) fits a generalized linear model with binomial errors.

Syntax

[dev, idf, b, irank, se, covar, v, ifail] = g02gb(link, mean_p, x, isx, ip, y, t, 'n', n, 'm', m, 'wt', wt, 'v', v, 'tol', tol, 'maxit', maxit, 'iprint', iprint, 'eps', eps)
[dev, idf, b, irank, se, covar, v, ifail] = nag_correg_glm_binomial(link, mean_p, x, isx, ip, y, t, 'n', n, 'm', m, 'wt', wt, 'v', v, 'tol', tol, 'maxit', maxit, 'iprint', iprint, 'eps', eps)
Note: the interface to this routine has changed since earlier releases of the toolbox:
At Mark 23: offset and weight were removed from the interface; v, wt, tol, maxit, iprint and eps were made optional

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 πy1-πt-y.  
(b) X, a set of p independent variables for each observation, x1,x2,,xp.
(c) a linear model:
η=βjxj.  
(d) a link between the linear predictor, η, and the mean of the distribution, μ=πt, the link function, η=gμ. 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=1ndevyi,μ^i=i=1n2 yilogyiμ^i+ti-yilog ti-yi ti-μ^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_correg_glm_binomial (g02gb) 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 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 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η^.
nag_correg_glm_binomial (g02gb) 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 arguments. These solutions can be obtained by using nag_correg_glm_constrain (g02gk) after using nag_correg_glm_binomial (g02gb). Only certain linear combinations of the arguments will have unique estimates, these are known as estimable functions and can be estimated and tested using nag_correg_glm_estfunc (g02gn).
Details of the SVD are made available in the form of the matrix P*:
P*= D-1 P1T P0T .  

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

Parameters

Compulsory Input Parameters

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_p – string (length ≥ 1)
Indicates if a mean term is to be included.
mean_p='M'
A mean term, intercept, will be included in the model.
mean_p='Z'
The model will pass through the origin, zero-point.
Constraint: mean_p='M' or 'Z'.
3:     xldxm – double array
ldx, the first dimension of the array, must satisfy the constraint ldxn.
xij must contain the ith observation for the jth independent variable, for i=1,2,,n and j=1,2,,m.
4:     isxm int64int32nag_int array
Indicates which independent variables are to be included in the model.
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_p='M', exactly ip-1 values of isx must be >0;
  • if mean_p='Z', exactly ip values of isx must be >0.
5:     ip int64int32nag_int scalar
The number of independent variables in the model, including the mean or intercept if present.
Constraint: ip>0.
6:     yn – double array
The observations on the dependent variable, yi, for i=1,2,,n.
Constraint: 0.0yiti, for i=1,2,,n.
7:     tn – double array
t, the binomial denominator.
Constraint: ti0.0, for i=1,2,,n.

Optional Input Parameters

1:     n int64int32nag_int scalar
Default: the dimension of the arrays y, t and the first dimension of the arrays x, v. (An error is raised if these dimensions are not equal.)
n, the number of observations.
Constraint: n2.
2:     m int64int32nag_int scalar
Default: the dimension of the array isx and the second dimension of the array x. (An error is raised if these dimensions are not equal.)
m, the total number of independent variables.
Constraint: m1.
3:     wt: – double array
The dimension of the array wt must be at least n if weight='W', and at least 1 otherwise
If weight='W', wt must contain the weights to be used in the weighted regression. 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.
4:     vnip+7 – double array
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.
5:     tol – double scalar
Default: 0
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 function will use 10×machine precision instead.
Constraint: tol0.0.
6:     maxit int64int32nag_int scalar
Default: 10
The maximum number of iterations for the iterative weighted least squares.
If maxit=0, a default value of 10 is used.
Constraint: maxit0.
7:     iprint int64int32nag_int scalar
Default: 0
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 nag_file_set_unit_advisory (x04ab)).
8:     eps – double scalar
Default: 0
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 function will use machine precision instead.
Constraint: eps0.0.

Output Parameters

1:     dev – double scalar
The deviance for the fitted model.
2:     idf int64int32nag_int scalar
The degrees of freedom associated with the deviance for the fitted model.
3:     bip – double array
The estimates of the parameters of the generalized linear model, β^.
If mean_p='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_p='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.
4:     irank int64int32nag_int scalar
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.
5:     seip – double array
The standard errors of the linear parameters.
sei contains the standard error of the parameter estimate in bi, for i=1,2,,ip.
6:     covarip×ip+1/2 – double array
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 covarj×j-1/2+i.
7:     vnip+7 – double array
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.
8:     ifail int64int32nag_int scalar
ifail=0 unless the function detects an error (see Error Indicators and Warnings).

Error Indicators and Warnings

Note: nag_correg_glm_binomial (g02gb) may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the function:

Cases prefixed with W are classified as warnings and do not generate an error of type NAG:error_n. See nag_issue_warnings.

   ifail=1
On entry,n<2,
orm<1,
orldx<n,
orldv<n,
orip<1,
orlink'G', 'P' or 'C'.
ormean_p'M' or 'Z'.
orweight'U' or 'W'.
oroffset'N' or 'Y'.
ormaxit<0,
ortol<0.0,
oreps<0.0.
   ifail=2
On entry,weight='W' and a value of wt<0.0.
   ifail=3
On entry,a value of isx<0,
orthe value of ip is incompatible with the values of mean_p and isx,
orip is greater than the effective number of observations.
   ifail=4
On entry,ti<0 for some i=1,2,,n.
   ifail=5
On entry,yi<0.0,
oryi>ti for some 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
The singular value decomposition has failed to converge. This is an unlikely error exit.
   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.
W  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.
W  ifail=10
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.
   ifail=-399
Your licence key may have expired or may not have been installed correctly.
   ifail=-999
Dynamic memory allocation failed.

Accuracy

The accuracy will depend on the value of tol as described in Arguments. 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 β^.

Further Comments

None.

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).
function g02gb_example


fprintf('g02gb example results\n\n');

x = [  1;      0;     -1];
y = [ 19;     29;     24];
t = [516;    560;    293];

[n,m]   = size(x);
isx = ones(m,1,'int64');
ip  = int64(m+1);

link   = 'G';
mean_p = 'M';
eps = 1e-6;
tol = 5e-5;

% Fit generalized linear model with Binomial errors
[dev, idf, b, irank, se, covar, v, ifail] = ...
  g02gb( ...
         link, mean_p, x, isx, ip, y, t, 'eps', eps, 'tol', tol);

%  Display results
fprintf('Deviance           = %12.4e\n', dev);
fprintf('Degrees of freedom = %2d\n', idf);
fprintf('\nVariable   Parameter estimate   Standard error\n\n');
ivar = double([1:ip]');
fprintf('%6d%20.4e%20.4e\n',[ivar b se]');
fprintf('\n       n          y        fv     residual       h\n\n');
for j=1:n
  fprintf('%10.1f%10.1f%10.2f%12.4f%10.3f\n',t(j),y(j),v(j,2),v(j,5),v(j,6));
end


g02gb example results

Deviance           =   7.3539e-02
Degrees of freedom =  1

Variable   Parameter estimate   Standard error

     1         -2.8682e+00          1.2173e-01
     2         -4.2637e-01          1.5981e-01

       n          y        fv     residual       h

     516.0      19.0     18.45      0.1296     0.769
     560.0      29.0     30.10     -0.2070     0.422
     293.0      24.0     23.45      0.1178     0.809

PDF version (NAG web site, 64-bit version, 64-bit version)
Chapter Contents
Chapter Introduction
NAG Toolbox

© The Numerical Algorithms Group Ltd, Oxford, UK. 2009–2015