|
SNPDFName:
For = 0, the skew-normal reduces to a normal distribution. As goes to , the skew-normal tends to the half-normal distribution. The standard skew-normal distribution can be generalized with location and scale parameters.
<SUBSET/EXCEPT/FOR qualification> where <x> is a variable or a parameter; <lambda> is a number of parameter that specifies the value of the shape parameter; <loc> is an optional number or parameter that specifies the value of the location parameter; <scale> is an optional positive number or parameter that specifies the value of the scale parameter; <y> is a variable or a parameter (depending on what <x> is) where the computed skew-normal pdf value is stored; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
LET A = SNPDF(A1,LAMBDA) LET X2 = SNPDF(X1,0.5)
"Continuous Univariate Distributions: Volume I", Second Edition, Johnson, Kotz, and Balakrishnan, Wiley, 1994, p. 454.
MULTIPLOT 2 2 MULTIPLOT CORNER COORDINATES 0 0 100 100 TITLE SKEW-NORMAL: LAMBDA = 0 PLOT SNPDF(X,0) FOR X = -5 0.1 5 TITLE SKEW-NORMAL: LAMBDA = 1 PLOT SNPDF(X,1) FOR X = -5 0.1 5 TITLE SKEW-NORMAL: LAMBDA = 5 PLOT SNPDF(X,5) FOR X = -5 0.1 5 TITLE SKEW-NORMAL: LAMBDA = 10 PLOT SNPDF(X,10) FOR X = -5 0.1 5 END OF MULTIPLOT
Date created: 2/3/2004 |