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

NAG Library Routine Document

G07BFF

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

G07BFF estimates parameter values for the generalized Pareto distribution by using either moments or maximum likelihood.

2  Specification

SUBROUTINE G07BFF ( N, Y, OPTOPT, XI, BETA, ASVC, OBSVC, LL, IFAIL)
INTEGER  N, OPTOPT, IFAIL
REAL (KIND=nag_wp)  Y(N), XI, BETA, ASVC(4), OBSVC(4), LL

3  Description

Let the distribution function of a set of n observations
yi ,   i=1,2,,n
be given by the generalized Pareto distribution:
Fy = 1- 1+ ξy β -1/ξ , ξ0 1-e-yβ , ξ=0;
where
Estimates ξ^ and β^ of the parameters ξ and β are calculated by using one of:
The variances and covariance of the asymptotic Normal distribution of parameter estimates ξ^ and β^ are returned if ξ^ satisfies:
If the MLE option is exercised, the observed variances and covariance of ξ^ and β^ is returned, given by the negative inverse Hessian of L.

4  References

Hosking J R M and Wallis J R (1987) Parameter and quantile estimation for the generalized Pareto distribution Technometrics 29(3)
McNeil A J, Frey R and Embrechts P (2005) Quantitative Risk Management Princeton University Press

5  Parameters

1:     N – INTEGERInput
On entry: the number of observations.
Constraint: N>1.
2:     Y(N) – REAL (KIND=nag_wp) arrayInput
On entry: the n observations yi, for i=1,2,,n, assumed to follow a generalized Pareto distribution.
Constraints:
  • Yi0.0;
  • i=1 n Yi>0.0.
3:     OPTOPT – INTEGERInput
On entry: determines the method of estimation, set:
OPTOPT=-2
For the method of probability-weighted moments.
OPTOPT=-1
For the method of moments.
OPTOPT=1
For maximum likelihood with starting values given by the method of moments estimates.
OPTOPT=2
For maximum likelihood with starting values given by the method of probability-weighted moments.
Constraint: OPTOPT=-2, -1, 1 or 2.
4:     XI – REAL (KIND=nag_wp)Output
On exit: the parameter estimate ξ^.
5:     BETA – REAL (KIND=nag_wp)Output
On exit: the parameter estimate β^.
6:     ASVC(4) – REAL (KIND=nag_wp) arrayOutput
On exit: the variance-covariance of the asymptotic Normal distribution of ξ^ and β^. ASVC1 contains the variance of ξ^; ASVC4 contains the variance of β^; ASVC2 and ASVC3 contain the covariance of ξ^ and β^.
7:     OBSVC(4) – REAL (KIND=nag_wp) arrayOutput
On exit: if maximum likelihood estimates are requested, the observed variance-covariance of ξ^ and β^. OBSVC1 contains the variance of ξ^; OBSVC4 contains the variance of β^; OBSVC2 and OBSVC3 contain the covariance of ξ^ and β^.
8:     LL – REAL (KIND=nag_wp)Output
On exit: if maximum likelihood estimates are requested, LL contains the log-likelihood value L at the end of the optimization; otherwise LL is set to -1.0.
9:     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,N1.
IFAIL=2
At least one value of Yi is less than zero.
IFAIL=3
OPTOPT must equal one of -2, -1, 1 or 2.
IFAIL=6
The asymptotic distribution of parameter estimates is invalid.
IFAIL=7
The distribution of maximum likelihood estimate of parameters is not available because the Hessian of L could not be inverted.
IFAIL=8
The asymptotic distribution of parameter estimates is invalid and the distribution of maximum likelihood estimate of parameters is not available because the Hessian of L could not be inverted.
IFAIL=9
The optimization of log-likelihood failed to converge; no maximum likelihood estimates are returned. Try using the other maximum likelihood option by resetting OPTOPT. If this also fails, moments-based estimates can be returned by an appropriate setting of OPTOPT.
IFAIL=10
Variance of data in Y is too low for method of moments optimization.
IFAIL=11
The sum of Y is zero within machine precision.

7  Accuracy

Not applicable.

8  Further Comments

The search for maximum likelihood parameter estimates is further restricted by requiring
1+ ξ^yi β^ > 0 ,
as this avoids the possibility of making the log-likelihood L arbitrarily high.

9  Example

This example calculates parameter estimates for 23 observations assumed to be drawn from a generalized Pareto distribution.

9.1  Program Text

Program Text (g07bffe.f90)

9.2  Program Data

Program Data (g07bffe.d)

9.3  Program Results

Program Results (g07bffe.r)


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

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