5 IRWLS Algorithm

5.1 Introduction

The perfect method for estimating parameters in Generalised Linear Models is Maximum Likelihood Estimation. However, except in special cases, the likelihood cannot be maximised analytically. Hence, a numerical approach is desired for the computer implementation. The Iteratively Re-Weighted Least Squares (IRWLS) algorithm was developed for such purpose, and is described below.

Let l be a twice differential function and suppose we want to solve l(x)=0. Start with an initial solution and let b be the current solution. The Newton-Raphson method is based on computing the updated solution b* given by:

-l′′(b)b*=-l′′(b)b+l(b)

or equivalently:

b*=b-l(b)l′′(b)

and this procedure is iterated until the changes in successive solutions are insignificant.

Fisher’s scoring method is applicable when l is a random function representing the log-likelihood and we want to solve (β^)=0. Start with an initial estimate and let b be the current estimate. Let I=𝔼[-′′(b)] and u=(b). Then the updated estimate b* is given by:

Ib*=Ib+u. (5.1)

This procedure is iterated until the changes in successive solutions are insignificant.