Learn R Programming

fGarch (version 4021.88)

show-methods: 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.

Arguments

Methods

object = "ANY"

Generic function.

object = "fGARCH"

Print function for objects of class "fGARCH".

object = "fGARCHSPEC"

Print function for objects of class "fGARCH".

Author

Diethelm Wuertz for the Rmetrics R-port.

Examples

Run this code
## 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)

Run the code above in your browser using DataLab