|
IBCDFName:
with B denoting the beta function (HELP BETA for details). The inverted beta cumulative distribution function is computed by numerically integrating the inverted beta probability density function.
<SUBSET/EXCEPT/FOR qualification> where <x> is a variable, a number, or a parameter; <alpha> is a number or parameter specifying the first shape parameter; <beta> is a number or parameter specifying the second shape parameter; <y> is a variable or a parameter (depending on what <x> is) where the computed inverted beta cdf value is stored; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
LET X2 = IBCDF(X1,A,B) PLOT IBCDF(X,0.5,2) FOR X = 0.01 0.01 10
"Statistical Distributions", Third Edition, Evans, Hastings, and Peacock, Wiley, 2000.
LET ALPHA = DATA 0.5 0.5 0.5 1 1 1 2 2 2
LET BETA = DATA 0.5 1 2 0.5 1 2 0.5 1 2
.
MULTIPLOT 3 3
MULTIPLOT CORNER COORDINATES 0 0 100 100
MULTIPLOT SCALE FACTOR 3
Y1LIMITS 0 1
MAJOR YTIC MARK NUMBER 6
LOOP FOR K = 1 1 9
LET A1 = ALPHA(K)
LET B1 = BETA(K)
TITLE ALPHA = ^A1, BETA = ^B1
PLOT IBCDF(X,A1,B1) FOR X = 0.1 0.1 10
END OF LOOP
Date created: 2/3/2004 |