Reparameterization: Reparameterize Skewed Normal Parameterized using Shape and...

Description Usage Arguments Details Value References See Also Examples

Description

The transformation functions used to reparameterize skewned normal from shape (direct parameter) to skewness (central parameter), and vice visa.

Usage

1
2
3

Arguments

alpha

shape parameters

gamma

skewness parameters

Details

For skewed normal distributions, there is a one-to-one mapping from the shape to the skewness, regardless of the other parameters such as mean and variances. The parameters (mean, variance, skewness) are called centeral parameters (cp), while (location, scale, shape) are called direct parameters (dp). When estimating model parameters, skewness (central parameter) is more stable than the shape parameter. Note that the skewness for a skewed normal is bounded.

Value

skewness.cp(alpha) gives the skewness corresponding to the shape alpha; shape.dp(gamma) gives the shape value corresponding to the skewness gamma.

D.gamma(alpha) gives the first and second derivative of skewness wrt. the shape alpha.

References

[1]. Azzalini, A. (1985). A class of distributions which includes the normal ones. Scandinavian journal of statistics, 171-178.

See Also

D.SN, cp2dp, dp2cp

Examples

1
2
3
gamma1 <- skewness.cp(10) # the skewness when the shape is 10
alpha1 <- shape.dp(gamma1) # the shape when the skewenss is gamma1; should be 10
ret <- D.gamma(10) # the derivatives of the skewness as a function of the shape

cSFM documentation built on May 29, 2017, 6:10 p.m.