|
STPDFName:
with
For The standard skew-t distribution can be generalized with location and scale parameters.
<SUBSET/EXCEPT/FOR qualification> where <x> is a variable or a parameter; <nu> is a number of parameter that specifies the value of the degrees of freedom shape parameter; <lambda> is a number of parameter that specifies the value of the skewness shape parameter; <y> is a variable or a parameter (depending on what <x> is) where the computed skew-t pdf value is stored; and where the <SUBSET/EXCEPT/FOR qualification> is optional.
LET A = STPDF(A1,DF,LAMBDA) LET X2 = STPDF(X1,NU,0.5)
"Log-Skew-Normal and Log-Skew-t Distributions as Models for Familiy Income Data", Azzalini and Dal Cappello, unpublished paper downloaded from Azzallini web site.
MULTIPLOT 2 2
MULTIPLOT CORNER COORDINATES 0 0 100 100
TITLE SKEW-T (NU=3): LAMBDA = 0
PLOT STPDF(X,3,0) FOR X = -5 0.1 5
TITLE SKEW-T (NU=3): LAMBDA = 1
PLOT STPDF(X,3,1) FOR X = -5 0.1 5
TITLE SKEW-T (NU=3): LAMBDA = 5
PLOT STPDF(X,3,5) FOR X = -5 0.1 5
TITLE SKEW-T (NU=3): LAMBDA = 10
PLOT STPDF(X,3,10) FOR X = -5 0.1 5
END OF MULTIPLOT
Date created: 2/3/2004 |