## S3 method for class 'hyperbFit'summary(object, hessian =FALSE, hessianMethod ="exact",...)## 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.
hessian: Logical. If TRUE the Hessian is printed.
hessianMethod: Two methods are available to calculate the Hessian exactly ("exact") or approximately ("tsHessian").
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
If hessian = FALSE no calculations are performed, the class of object is simply changed from hyperbFit to summary.hyperbFit so that it can be passed to print.summary.hyperbFit for printing in a convenient form.
If hessian = TRUE the Hessian is calculated via a call to hyperbHessian and the standard errors of the parameter estimates are calculated using the Hessian and these are added to the original list object. The class of the object returned is again changed to summary.hyperbFit.
Returns
summary.hyperbFit returns a list comprised of the original object object and additional elements hessian and sds if hessian = TRUE, otherwise it returns the original object. The class of the object returned is changed to summary.hyperbFit.
See hyperbFit for the composition of an object of class hyperbFit.
If the Hessian and standard errors have not been added to the object x, print.summary.hyperbFit prints a summary in the same format as print.hyperbFit. When the Hessian and standard errors are available, the Hessian is printed and the standard errors for the parameter estimates are printed in parentheses beneath the parameter estimates, in the manner of fitdistr in the package MASS.