summary.hyperbFit: Summarizing Hyperbolic Distribution Fit

Description Usage Arguments Details Value See Also Examples

View source: R/summary.hyperbFit.R

Description

summary Method for class "hyperbFit".

Usage

1
2
3
4
5
## S3 method for class 'hyperbFit'
summary(object, ...)

## S3 method for class 'summary.hyperbFit'
print(x, digits = max(3, getOption("digits") - 3), ...)

Arguments

object

An object of class "hyperbFit", resulting from a call to hyperbFit.

x

An object of class "summary.hyperbFit", resulting from a call to summary.hyperbFit.

digits

The number of significant digits to use when printing.

...

Further arguments passed to or from other methods.

Details

summary.hyperbFit calculates standard errors for the estimates of mu, delta, alpha, and beta of the hyperbolic distribution parameter vector param if the Hessian from the call to hyperbFit is available.

Value

If the Hessian is available, summary.hyperbFit computes standard errors for the estimates of mu, delta, alpha, and beta, and adds them to object as object$sds. Otherwise, no calculations are performed and the composition of object is unaltered.

summary.hyperbFit invisibly returns x with class changed to summary.hyperbFit.

See hyperbFit for the composition of an object of class hyperbFit.

print.summary.hyperbFit prints a summary in the same format as print.hyperbFit when the Hessian is not available from the fit. When the Hessian is available, the standard errors for the parameter estimates are printed in parentheses beneath the parameter estimates, in the manner of fitdistr in the package MASS.

See Also

hyperbFit, summary.

Examples

1
2
3
4
5
6
### Continuing the  hyperbFit(.) example:
param <- c(2, 2, 2, 1)
dataVector <- rhyperb(500, param = param)
fit <- hyperbFit(dataVector, method = "BFGS", hessian = TRUE)
print(fit)
summary(fit)

sjp/GeneralizedHyperbolic documentation built on May 30, 2019, 12:06 a.m.