inf_criteria,fEGarch_distr_est-method {fEGarch} | R Documentation |
Methods for Accessing Distribution Estimation Elements
Description
Accessors to access the elements of the same name in
output objects returned by either distr_est
or
its various wrappers like norm_est
.
Usage
## S4 method for signature 'fEGarch_distr_est'
inf_criteria(x)
## S4 method for signature 'fEGarch_distr_est'
llhood(x)
## S4 method for signature 'fEGarch_distr_est'
pars(x)
## S4 method for signature 'fEGarch_distr_est'
se(x)
## S4 method for signature 'fEGarch_distr_est'
vcov_mat(x)
Arguments
x |
an object returned by either |
Details
Convenience methods to access the elements of the same name
that can otherwise be accessed via the operator @
within
objects that inherit from class "fEGarch_distr_est"
, which covers
objects returned by either distr_est
or
its various wrappers like norm_est
.
Value
The element within the input object of the same name as the method is returned.
Examples
x <- rged_s(4000, shape = 1.5) * 2.1 + 3.3
est <- ged_est(x)
inf_criteria(est)
pars(est)
[Package fEGarch version 1.0.1 Index]