|
IGAHAZName:
is
the shape parameter and IGAPDF and IGACDF are the
probability density and cumulative distribution functions of the
inverted gamma distribution.
The inverted gamma is a special case of the generalized gamma distribution where the second shape parameter is equal to -1.
where <x> is a positive number, parameter, or a variable; <y> is a variable or a parameter (depending on what <x> is) where the computed inverted gamma hazard value is saved; <gamma> is a positive number, parameter, or variable that specifies the shape parameter; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
LET Y = IGAHAZ(X,1.5) PLOT IGAHAZ(X,1.5) FOR X = 5 0.1 15
"Statistical Distributions", 2nd. Edition, Evans, Hastings, and Peacock, Wiley and Sons, 1993 (chapter 18).
LET G = DATA 0.5 1 2 5
.
MULTIPLOT 2 2
MULTIPLOT CORNER COORDINATES 0 0 100 100
TITLE AUTOMATIC
LOOP FOR K = 1 1 4
LET G1 = G(K)
X1LABEL GAMMA = ^G1
PLOT IGAHAZ(X,G1) FOR X = 0.1 0.1 10
END OF LOOP
END OF MULTIPLOT
Date created: 10/9/2001 |