Learn R Programming

ghyp (version 1.6.5)

coef-method: Extract parameters of generalized hyperbolic distribution objects

Description

The function coef returns the parameters of a generalized hyperbolic distribution object as a list. The user can choose between the “chi/psi”, the “alpha.bar” and the “alpha/delta” parametrization. The function coefficients is a synonym for coef.

Usage

# S4 method for ghyp
coef(object, type = c("chi.psi", "alpha.bar", "alpha.delta"))

# S4 method for ghyp coefficients(object, type = c("chi.psi", "alpha.bar", "alpha.delta"))

Value

If type is “chi.psi” a list with components:

lambdaShape parameter.
chiShape parameter.
psiShape parameters.
muLocation parameter.
sigmaDispersion parameter.
gammaSkewness parameter.

If type is “alpha.bar” a list with components:

lambdaShape parameter.
alpha.barShape parameter.
muLocation parameter.
sigmaDispersion parameter.
gammaSkewness parameter.

If type is “alpha.delta” a list with components:

lambdaShape parameter.
alphaShape parameter.
deltaShape parameter.
muLocation parameter.
DeltaDispersion matrix with a determinant of 1 (only returned in the multivariate case).
betaShape and skewness parameter.

Arguments

object

An object inheriting from class ghyp.

type

According to type the parameters of either the “chi/psi”, the “alpha.bar” or the “alpha/delta” parametrization will be returned. If type is missing, the parameters belonging to the parametrization of the construction are returned.

Author

David Luethi

Details

Internally, the “chi/psi” parametrization is used. However, fitting is only possible in the “alpha.bar” parametrization as it provides the most convenient parameter constraints.

See Also

ghyp, fit.ghypuv, fit.ghypmv, ghyp.fit.info, transform, [.ghyp

Examples

Run this code
  ghyp.mv <- ghyp(lambda = 1, alpha.bar = 0.1, mu = rep(0,2), sigma = diag(rep(1,2)),
                  gamma = rep(0,2), data = matrix(rt(1000, df = 4), ncol = 2))
  ## Get parameters
  coef(ghyp.mv, type = "alpha.bar")
  coefficients(ghyp.mv, type = "chi.psi")

  ## Simple modification (do not modify slots directly e.g. object@mu <- 0:1)
  param <- coef(ghyp.mv, type = "alpha.bar")
  param$mu <- 0:1
  do.call("ghyp", param) # returns a new 'ghyp' object


Run the code above in your browser using DataLab