View source: R/summary.gigFit.R
| summary.gigFit | R Documentation |
summary Method for class "gigFit".
## S3 method for class 'gigFit'
summary(object, hessian = FALSE,
hessianMethod = "tsHessian", ...)
## S3 method for class 'summary.gigFit'
print(x,
digits = max(3, getOption("digits") - 3), ...)
object |
An object of class |
hessian |
Logical. If |
hessianMethod |
The two-sided Hessian approximation given by
|
x |
An object of class |
digits |
The number of significant digits to use when printing. |
... |
Further arguments passed to or from other methods. |
If hessian = FALSE no calculations are performed, the class of
object is simply changed from gigFit to
summary.gigFit so that it can be passed to
print.summary.gigFit for printing in a convenient form.
If hessian = TRUE the Hessian is calculated via a call to
gigHessian 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.gigFit.
summary.gigFit 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.gigFit.
See gigFit for the composition of an object of class
gigFit.
If the Hessian and standard errors have not been added to the object
x, print.summary.gigFit prints a summary in the same
format as print.gigFit. 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.
David Scott d.scott@auckland.ac.nz, Christine Yang Dong c.dong@auckland.ac.nz
gigFit, summary, gigHessian.
### Continuing the gigFit(.) example:
param <- c(1,1,1)
dataVector <- rgig(500, param = param)
fit <- gigFit(dataVector)
print(fit)
summary(fit, hessian = TRUE, hessianMethod = "tsHessian")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.