g02ga fits a generalized linear model with normal errors.

Syntax

C#
public static void g02ga(
	string link,
	string mean,
	string offset,
	string weight,
	int n,
	double[,] x,
	int m,
	int[] isx,
	int ip,
	double[] y,
	double[] wt,
	ref double s,
	double a,
	out double rss,
	out int idf,
	double[] b,
	out int irank,
	double[] se,
	double[] cov,
	double[,] v,
	double tol,
	int maxit,
	int iprint,
	double eps,
	out int ifail
)
Visual Basic
Public Shared Sub g02ga ( _
	link As String, _
	mean As String, _
	offset As String, _
	weight As String, _
	n As Integer, _
	x As Double(,), _
	m As Integer, _
	isx As Integer(), _
	ip As Integer, _
	y As Double(), _
	wt As Double(), _
	ByRef s As Double, _
	a As Double, _
	<OutAttribute> ByRef rss As Double, _
	<OutAttribute> ByRef idf As Integer, _
	b As Double(), _
	<OutAttribute> ByRef irank As Integer, _
	se As Double(), _
	cov As Double(), _
	v As Double(,), _
	tol As Double, _
	maxit As Integer, _
	iprint As Integer, _
	eps As Double, _
	<OutAttribute> ByRef ifail As Integer _
)
Visual C++
public:
static void g02ga(
	String^ link, 
	String^ mean, 
	String^ offset, 
	String^ weight, 
	int n, 
	array<double,2>^ x, 
	int m, 
	array<int>^ isx, 
	int ip, 
	array<double>^ y, 
	array<double>^ wt, 
	double% s, 
	double a, 
	[OutAttribute] double% rss, 
	[OutAttribute] int% idf, 
	array<double>^ b, 
	[OutAttribute] int% irank, 
	array<double>^ se, 
	array<double>^ cov, 
	array<double,2>^ v, 
	double tol, 
	int maxit, 
	int iprint, 
	double eps, 
	[OutAttribute] int% ifail
)
F#
static member g02ga : 
        link : string * 
        mean : string * 
        offset : string * 
        weight : string * 
        n : int * 
        x : float[,] * 
        m : int * 
        isx : int[] * 
        ip : int * 
        y : float[] * 
        wt : float[] * 
        s : float byref * 
        a : float * 
        rss : float byref * 
        idf : int byref * 
        b : float[] * 
        irank : int byref * 
        se : float[] * 
        cov : float[] * 
        v : float[,] * 
        tol : float * 
        maxit : int * 
        iprint : int * 
        eps : float * 
        ifail : int byref -> unit 

Parameters

mean
Type: System..::..String
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".
offset
Type: System..::..String
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="N" or "Y".
weight
Type: System..::..String
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".
n
Type: System..::..Int32
On entry: n, the number of observations.
Constraint: n2.
x
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, m]
Note: dim1 must satisfy the constraint: dim1n
On entry: x[i-1,j-1] must contain the ith observation for the jth independent variable, for i=1,2,,n and j=1,2,,m.
m
Type: System..::..Int32
On entry: m, the total number of independent variables.
Constraint: m1.
isx
Type: array<System..::..Int32>[]()[][]
An array of size [m]
On entry: indicates which independent variables are to be included in the model.
If isx[j-1]>0, the variable contained in the jth column of x is included in the regression model.
Constraints:
  • isx[j-1]0, for i=0,1,,m-1;
  • if mean="M", exactly ip-1 values of isx must be >0;
  • if mean="Z", exactly ip values of isx must be >0.
ip
Type: System..::..Int32
On entry: the number of independent variables in the model, including the mean or intercept if present.
Constraint: ip>0.
y
Type: array<System..::..Double>[]()[][]
An array of size [n]
On entry: the observations on the dependent variable, yi, for i=1,2,,n.
wt
Type: array<System..::..Double>[]()[][]
An array of size [dim1]
Note: the dimension of the array wt must be at least n if weight="W", and at least 1 otherwise.
On entry: if weight="W", wt must contain the weights to be used with the model, ωi. If wt[i-1]=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=0,1,,n-1.
s
Type: System..::..Double%
On entry: the scale parameter for the model, σ2.
If s=0.0, the scale parameter is estimated with the method using the residual mean square.
On exit: if on input s=0.0, s contains the estimated value of the scale parameter, σ^2.
If on input s0.0, s is unchanged on exit.
Constraint: s0.0.
a
Type: System..::..Double
On entry: if link="E", a must contain the power of the exponential.
If link"E", a is not referenced.
Constraint: if link="E", a0.0.
rss
Type: System..::..Double%
On exit: the residual sum of squares for the fitted model.
idf
Type: System..::..Int32%
On exit: the degrees of freedom associated with the residual sum of squares for the fitted model.
b
Type: array<System..::..Double>[]()[][]
An array of size [ip]
On exit: the estimates of the parameters of the generalized linear model, β^.
If mean="M", b[0] will contain the estimate of the mean parameter and b[i] will contain the coefficient of the variable contained in column j of x, where isx[j-1] is the ith positive value in the array isx.
If mean="Z", b[i-1] will contain the coefficient of the variable contained in column j of x, where isx[j-1] is the ith positive value in the array isx.
irank
Type: System..::..Int32%
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 than eps× (largest singular value). It is possible for the SVD to be carried out but for irank to be returned as ip.
se
Type: array<System..::..Double>[]()[][]
An array of size [ip]
On exit: the standard errors of the linear parameters.
se[i-1] contains the standard error of the parameter estimate in b[i-1], for i=1,2,,ip.
cov
Type: array<System..::..Double>[]()[][]
An array of size [ip×ip+1/2]
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-1] and the parameter estimate given in b[j-1], ji, is stored in cov[j×j-1/2+i-1].
v
Type: array<System..::..Double,2>[,](,)[,][,]
An array of size [dim1, ip+7]
Note: dim1 must satisfy the constraint: dim1n
On entry: if offset="N", v need not be set.
If offset="Y", v[i-1,6], 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,0] contains the linear predictor value, ηi, for i=1,2,,n.
v[i-1,1] contains the fitted value, μ^i, for i=1,2,,n.
v[i-1,2] is only included for consistency with other methods. v[i-1,2]=1.0, for i=1,2,,n.
v[i-1,3] contains the square root of the working weight, wi12, for i=1,2,,n.
v[i-1,4] contains the residual, ri, for i=1,2,,n.
v[i-1,5] contains the leverage, hi, for i=1,2,,n.
v[i-1,6] contains the offset, for i=1,2,,n. If offset="N", all values will be zero.
v[i-1,j-1], 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.
tol
Type: System..::..Double
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 residual sum of squares. This is approximately an absolute precision if the residual sum of squares is small and a relative precision if the residual sum of squares is large.
If 0.0tol<machine precision, g02ga will use 10×machine precision.
Constraint: tol0.0.
maxit
Type: System..::..Int32
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.
iprint
Type: System..::..Int32
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 is 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 not in this release)).
eps
Type: System..::..Double
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 method will use machine precision instead.
Constraint: eps0.0.
ifail
Type: System..::..Int32%
On exit: ifail=0 unless the method detects an error or a warning has been flagged (see [Error Indicators and Warnings]).

Description

A generalized linear model with Normal errors consists of the following elements:
(a) a set of n observations, yi, from a Normal distribution with probability density function:
12πσexp-y-μ22σ2,
where μ is the mean and σ2 is the variance.
(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, μ, i.e., η=gμ. The possible link functions are:
(i) exponent link: η=μa, for a constant a,
(ii) identity link: η=μ,
(iii) log link: η=logμ,
(iv) square root link: η=μ,
(v) reciprocal link: η=1μ.
(e) a measure of fit, the residual sum of squares =yi-μ^i2.
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.
At each iteration an approximation to the estimate of β, β^, is found by the weighted least squares regression of z on X with weights w.
g02ga finds a QR decomposition of w12X, i.e., w12X=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β^=QTw12z.
If R is not of full rank a solution is obtained by means of a singular value decomposition (SVD) of R.
R=Q*D000PT,
where D is a k by k diagonal matrix with nonzero diagonal elements, k being the rank of R and w12X.
This gives the solution
β^=P1D-1Q*00IQTw12z
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 residual sum of squares.
The initial values for the algorithm are obtained by taking
η^=gy.
The fit of the model can be assessed by examining and testing the residual sum of squares, in particular comparing the difference in residual sums of squares between nested models, i.e., when one model is a sub-model of the other.
Let RSSf be the residual sum of squares for the full model with degrees of freedom νf and let RSSs be the residual sum of squares for the sub-model with degrees of freedom νs then:
F=RSSs-RSSf/νs-νfRSSf/νf,
has, approximately, an F-distribution with (νs-νf), νf degrees of freedom.
The parameter estimates, β^, are asymptotically Normally distributed with variance-covariance matrix:
  • C=R-1R-1Tσ2 in the full rank case,
  • otherwise C=P1D-2P1Tσ2
The residuals and influence statistics can also be examined.
The estimated linear predictor η^=Xβ^, can be written as Hw12z 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η^.
g02ga also computes the residuals, r:
ri=yi-μ^i.
An option allows prior weights ωi to be used; this gives a model with:
σi2=σ2ωi.
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 variable 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 g02gk after using g02ga. Only certain linear combinations of the parameters will have unique estimates; these are known as estimable functions and can be estimated and tested using g02gn.
Details of the SVD are made available, in the form of the matrix P*:
P*=D-1P1TP0T.

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

Error Indicators and Warnings

Note: g02ga may return useful information for one or more of the following detected errors or warnings.
Errors or warnings detected by the method:
Some error messages may refer to parameters that are dropped from this interface (LDX, LDV) In these cases, an error in another parameter has usually caused an incorrect value to be inferred.
ifail=1
On entry,n<2,
orm<1,
orip<1,
orlink"E","I","L","S" or "R",
ors<0.0,
orlink="E" and a=0.0,
ormean"M" or "Z",
orweight"U" or "W",
oroffset"N" or "Y",
ormaxit<0,
ortol<0.0,
oreps<0.0.
ifail=3
On entry,a value of isx<0,
orthe value of ip is incompatible with the values of mean and isx,
orip is greater than the effective number of observations.
ifail=4
A fitted value is at a boundary. This will only occur with link="L", "R" or "E". This may occur if there are small values of y and the model is not suitable for the data. The model should be reformulated with, perhaps, some observations dropped.
ifail=5
The singular value decomposition has failed to converge. This is an unlikely error exit, see (F02WUF not in this release).
ifail=6
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=7
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=8
The degrees of freedom for error are 0. A saturated model has been fitted.
ifail=-9000
An error occured, see message report.
ifail=-6000
Invalid Parameters value
ifail=-4000
Invalid dimension for array value
ifail=-8000
Negative dimension for array value
ifail=-6000
Invalid Parameters value

Accuracy

The accuracy is determined by tol as described in [Parameters]. As the residual sum of squares is a function of μ2 the accuracy of the β^ will depend on the link used and may be of the order tol.

Parallelism and Performance

None.

Further Comments

None.

Example

See Also