Learn R Programming

fEGarch (version 1.0.1)

inf_criteria,fEGarch_distr_est-method: 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 fEGarch_distr_est
inf_criteria(x)

# S4 method for fEGarch_distr_est llhood(x)

# S4 method for fEGarch_distr_est pars(x)

# S4 method for fEGarch_distr_est se(x)

# S4 method for fEGarch_distr_est vcov_mat(x)

Value

The element within the input object of the same name as the method is returned.

Arguments

x

an object returned by either distr_est or its various wrappers like norm_est.

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.

Examples

Run this code
x <- rged_s(4000, shape = 1.5) * 2.1 + 3.3
est <- ged_est(x)
inf_criteria(est)
pars(est)

Run the code above in your browser using DataLab