show-methods {fGarch}R Documentation

GARCH Modelling Show Methods

Description

Show methods for GARCH Modelling, i.e., methods for the show() generic function (which typically and also here are also used as the print methods for S4 objects.

Methods

object = "ANY"

Generic function.

object = "fGARCH"

Print function for objects of class "fGARCH".

object = "fGARCHSPEC"

Print function for objects of class "fGARCH".

Author(s)

Diethelm Wuertz for the Rmetrics R-port.

Examples

## garchSpec -
   spec = garchSpec()
   spec # print() or show() it

## garchSim -
   x = garchSim(spec, n = 500)

## garchFit -
   fit = garchFit(~ garch(1, 1), data = x)
   fit # == print(fit) and also == show(fit)

[Package fGarch version 4021.87 Index]