|
MAKPPFName:
There are a number of parameterizations of the Gompertz-Makeham distribution in the literature. Dataplot supports several different parameterizations.
In all three cases, the percent point function does not have a simple closed form. It is computed by numerically inverting the cumulative distribution function. The SLATEC routine FZERO is used to solve the inverse equation. To specify the DLMF parameterization, enter the command
To specify the Meeker and Escobar parameterization with three shape parameters, enter the command
To reset the default Meeker and Escobar definition with two shape parameters, enter
The Gompertz-Makeham distribution can be generalized with location and scale parameters in the usual way. Simply replace x with (x-loc)/scale in the above equations.
<SUBSET/EXCEPT/FOR qualification> where <p> is a number, parameter, or variable; <eta> is a number, parameter, or variable that specifies the first shape parameter; <zeta> is a non-negative number, parameter, or variable that specifies the second shape parameter; <loc> is a positive number, parameter, or variable that specifies the location parameter; <scale> is a positive number, parameter, or variable that specifies the scale parameter; <y> is a variable or a parameter (depending on what <x> is) where the computed Gompertz-Makeham ppf value is stored; and where the <SUBSET/EXCEPT/FOR qualification> is optional. Note that the location and scale parameters are optional. This syntax implements the definition as given by Meeker and Escobar that reparameterizes the distribution to have only two shape parameters.
<SUBSET/EXCEPT/FOR qualification> where <p> is a number, parameter, or variable; <xi> is a positive number, parameter, or variable that specifies the XI shape parameter; <lambda> is a positive number, parameter, or variable that specifies the LAMBDA shape parameter; <theta> is a positive number, parameter, or variable that specifies the THETA shape parameter; <loc> is a positive number, parameter, or variable that specifies the location parameter; <scale> is a positive number, parameter, or variable that specifies the scale parameter; <y> is a variable or a parameter (depending on what <x> is) where the computed Gompertz-Makeham ppf value is stored; and where the <SUBSET/EXCEPT/FOR qualification> is optional. Note that the location and scale parameters are optional. This syntax implements the DLMF definition.
<SUBSET/EXCEPT/FOR qualification> where <p> is a number, parameter, or variable; <gamma> is a positive number, parameter, or variable that specifies the gamma shape parameter; <k> is a positive number, parameter, or variable that specifies the k shape parameter; <lambda> is a positive number, parameter, or variable that specifies the lambda shape parameter; <loc> is a positive number, parameter, or variable that specifies the location parameter; <scale> is a positive number, parameter, or variable that specifies the scale parameter; <y> is a variable or a parameter (depending on what <x> is) where the computed Gompertz-Makeham ppf value is stored; and where the <SUBSET/EXCEPT/FOR qualification> is optional. Note that the location and scale parameters are optional. This syntax implements the definition for three shape parameters as given by Meeker and Escobar.
LET A = MAKPPF(0.95,0.5,2) LET A = MAKPPF(P,ETA,ZETA) PLOT MAKPPF(X,ETA,ZETA) FOR X = 0.01 0.01 5
SET GOMPERTZ MAKEHAM DEFINITION DLMF
2004/7: Added support for alternate parameterizations X1LABEL Probability Y1LABEL X LABEL CASE ASIS Y1LABEL DISPLACEMENT 12 X1LABEL DISPLACEMENT 12 TITLE DISPLACEMENT 2 . MULTIPLOT 2 2 MULTIPLOT CORNER COORDINATES 0 0 100 95 MULTIPLOT SCALE FACTOR 2 TITLE ZETA = 0.5, ETA = 0.2 PLOT MAKPPF(P,0.5,0.2) FOR P = 0.01 0.01 0.99 TITLE ZETA = 0.5, ETA = 2 PLOT MAKPPF(P,0.5,2) FOR P = 0.01 0.01 0.99 TITLE ZETA = 3, ETA = 0.2 PLOT MAKPPF(P,3,0.2) FOR P = 0.01 0.01 0.99 TITLE ZETA = 3, ETA = 2 PLOT MAKPPF(P,3,2) FOR P = 0.01 0.01 0.99 END OF MULTIPLOT . JUSTIFICATION CENTER MOVE 50 97 TEXT Gompertz-Makeham PPF
Date created: 7/7/2004 |