garchExtractors {fGarch} | R Documentation |
Extracts residuals and fitted values from a fitted GARCH object.
## S3 method for class 'fGARCH': residuals(object, ...) ## S3 method for class 'fGARCH': fitted(object, ...)
object |
an object of class fGARCH as returned from the function
garchFit() .
|
... |
additional arguments to be passed. |
Diethelm Wuertz for the Rmetrics R-port.
## garchSpec - spec = garchSpec() spec ## garchSim - x = garchSim(model = spec@model, n = 500) head(x) ## garchFit - # fit = garchFit(~garch(1, 1), data = x) # print(fit) ## Interactive Plot: ## plot(fit) ## Batch Plot: # plot(fit, which = 3) # summary(fit)