G07BEF (PDF version)
G07 Chapter Contents
G07 Chapter Introduction
NAG Library Manual

NAG Library Routine Document

G07BEF

Note:  before using this routine, please read the Users' Note for your implementation to check the interpretation of bold italicised terms and other implementation-dependent details.

+ Contents

    1  Purpose
    7  Accuracy

1  Purpose

G07BEF computes maximum likelihood estimates for parameters of the Weibull distribution from data which may be right-censored.

2  Specification

SUBROUTINE G07BEF ( CENS, N, X, IC, BETA, GAMMA, TOL, MAXIT, SEBETA, SEGAM, CORR, DEV, NIT, WK, IFAIL)
INTEGER  N, IC(*), MAXIT, NIT, IFAIL
REAL (KIND=nag_wp)  X(N), BETA, GAMMA, TOL, SEBETA, SEGAM, CORR, DEV, WK(N)
CHARACTER(1)  CENS

3  Description

G07BEF computes maximum likelihood estimates of the parameters of the Weibull distribution from exact or right-censored data.
For n realisations, yi, from a Weibull distribution a value xi is observed such that
xiyi.
There are two situations:
(a) exactly specified observations, when xi=yi
(b) right-censored observations, known by a lower bound, when xi<yi.
The probability density function of the Weibull distribution, and hence the contribution of an exactly specified observation to the likelihood, is given by:
fx;λ,γ=λγxγ-1exp-λxγ,  x>0,   for ​λ,γ>0;
while the survival function of the Weibull distribution, and hence the contribution of a right-censored observation to the likelihood, is given by:
Sx;λ,γ=exp-λ xγ,   x> 0,   for ​ λ ,γ> 0.
If d of the n observations are exactly specified and indicated by iD and the remaining n-d are right-censored, then the likelihood function, Like ​λ,γ is given by
Likeλ,γλγd iDxiγ-1 exp-λi=1nxiγ .
To avoid possible numerical instability a different parameterisation β,γ is used, with β=logλ. The kernel log-likelihood function, Lβ,γ, is then:
Lβ,γ=dlogγ+dβ+γ-1iDlogxi-eβi=1nxiγ.
If the derivatives L β , L γ , 2L β2 , 2L β γ  and 2L γ2  are denoted by L1, L2, L11, L12 and L22, respectively, then the maximum likelihood estimates, β^ and γ^, are the solution to the equations:
L1β^,γ^=0 (1)
and
L2β^,γ^=0 (2)
Estimates of the asymptotic standard errors of β^ and γ^ are given by:
seβ^=-L22 L11L22-L122 ,  seγ^=-L11 L11L22-L122 .
An estimate of the correlation coefficient of β^ and γ^ is given by:
L12L12L22 .
Note:  if an estimate of the original parameter λ is required, then
λ^=expβ^  and  seλ^=λ^seβ^.
The equations (1) and (2) are solved by the Newton–Raphson iterative method with adjustments made to ensure that γ^>0.0.

4  References

Gross A J and Clark V A (1975) Survival Distributions: Reliability Applications in the Biomedical Sciences Wiley
Kalbfleisch J D and Prentice R L (1980) The Statistical Analysis of Failure Time Data Wiley

5  Parameters

1:     CENS – CHARACTER(1)Input
On entry: indicates whether the data is censored or non-censored.
CENS='N'
Each observation is assumed to be exactly specified. IC is not referenced.
CENS='C'
Each observation is censored according to the value contained in ICi, for i=1,2,,n.
Constraint: CENS='N' or 'C'.
2:     N – INTEGERInput
On entry: n, the number of observations.
Constraint: N1.
3:     X(N) – REAL (KIND=nag_wp) arrayInput
On entry: Xi contains the ith observation, xi, for i=1,2,,n.
Constraint: Xi>0.0, for i=1,2,,n.
4:     IC(*) – INTEGER arrayInput
Note: the dimension of the array IC must be at least N if CENS='C', and at least 1 otherwise.
On entry: if CENS='C', then ICi contains the censoring codes for the ith observation, for i=1,2,,n.
If ICi=0, the ith observation is exactly specified.
If ICi=1, the ith observation is right-censored.
If CENS='N', then IC is not referenced.
Constraint: if CENS='C', then ICi=0 or 1, for i=1,2,,n.
5:     BETA – REAL (KIND=nag_wp)Output
On exit: the maximum likelihood estimate, β^, of β.
6:     GAMMA – REAL (KIND=nag_wp)Input/Output
On entry: indicates whether an initial estimate of γ is provided.
If GAMMA>0.0, it is taken as the initial estimate of γ and an initial estimate of β is calculated from this value of γ.
If GAMMA0.0, then initial estimates of γ and β are calculated, internally, providing the data contains at least two distinct exact observations. (If there are only two distinct exact observations, then the largest observation must not be exactly specified.) See Section 8 for further details.
On exit: contains the maximum likelihood estimate, γ^, of γ.
7:     TOL – REAL (KIND=nag_wp)Input
On entry: the relative precision required for the final estimates of β and γ. Convergence is assumed when the absolute relative changes in the estimates of both β and γ are less than TOL.
If TOL=0.0, then a relative precision of 0.000005 is used.
Constraint: machine precisionTOL1.0 or TOL=0.0.
8:     MAXIT – INTEGERInput
On entry: the maximum number of iterations allowed.
If MAXIT0, then a value of 25 is used.
9:     SEBETA – REAL (KIND=nag_wp)Output
On exit: an estimate of the standard error of β^.
10:   SEGAM – REAL (KIND=nag_wp)Output
On exit: an estimate of the standard error of γ^.
11:   CORR – REAL (KIND=nag_wp)Output
On exit: an estimate of the correlation between β^ and γ^.
12:   DEV – REAL (KIND=nag_wp)Output
On exit: the maximized kernel log-likelihood, Lβ^,γ^.
13:   NIT – INTEGEROutput
On exit: the number of iterations performed.
14:   WK(N) – REAL (KIND=nag_wp) arrayWorkspace
15:   IFAIL – INTEGERInput/Output
On entry: IFAIL must be set to 0, -1​ or ​1. If you are unfamiliar with this parameter you should refer to Section 3.3 in the Essential Introduction 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, if you are not familiar with this parameter, the recommended value is 0. 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:
IFAIL=1
On entry,CENS'N' or 'C',
orN<1,
orTOL<0.0,
or0.0<TOL<machine precision,
orTOL>1.0.
IFAIL=2
On entry,the ith observation, Xi0.0, for some i=1,2,,n,
orthe ith censoring code, ICi0 or 1, for some i=1,2,,n and CENS='C'.
IFAIL=3
On entry, there are no exactly specified observations, or the routine was requested to calculate initial values and there are either less than two distinct exactly specified observations or there are exactly two and the largest observation is one of the exact observations.
IFAIL=4
The method has failed to converge in MAXIT iterations. You should increase TOL or MAXIT.
IFAIL=5
Process has diverged. The process is deemed divergent if three successive increments of β or γ increase or if the Hessian matrix of the Newton–Raphson process is singular. Either different initial estimates should be provided or the data should be checked to see if the Weibull distribution is appropriate.
IFAIL=6
A potential overflow has been detected. This is an unlikely exit usually caused by a large input estimate of γ.

7  Accuracy

Given that the Weibull distribution is a suitable model for the data and that the initial values are reasonable the convergence to the required accuracy, indicated by TOL, should be achieved.

8  Further Comments

The initial estimate of γ is found by calculating a Kaplan–Meier estimate of the survival function, S^x, and estimating the gradient of the plot of log-logS^x against x. This requires the Kaplan–Meier estimate to have at least two distinct points.
The initial estimate of β^, given a value of γ^, is calculated as
β^=logdi=1nxiγ^ .

9  Example

In a study, 20 patients receiving an analgesic to relieve headache pain had the following recorded relief times (in hours):
1.1 1.4 1.3 1.7 1.9 1.8 1.6 2.2 1.7 2.7 4.1 1.8 1.5 1.2 1.4 3.0 1.7 2.3 1.6 2.0
(See Gross and Clark (1975).) This data is read in and a Weibull distribution fitted assuming no censoring; the parameter estimates and their standard errors are printed.

9.1  Program Text

Program Text (g07befe.f90)

9.2  Program Data

Program Data (g07befe.d)

9.3  Program Results

Program Results (g07befe.r)


G07BEF (PDF version)
G07 Chapter Contents
G07 Chapter Introduction
NAG Library Manual

© The Numerical Algorithms Group Ltd, Oxford, UK. 2012