fitted,fEGarch_fit-method {fEGarch} | R Documentation |
Extract Fitted Conditional Means
Description
An alternative to cmeans,fEGarch_fit-method
to extract
fitted conditional means from an estimation object
in this package.
Usage
## S4 method for signature 'fEGarch_fit'
fitted(object)
## S4 method for signature 'fEGarch_forecast'
fitted(object)
Arguments
object |
an object either of class |
Details
Extract fitted conditional means from an estimation object in this package.
Value
The element within the input object with name cmeans
is returned.
Depending on the element that can be a numeric vector, an object of
class "zoo" or a numeric matrix.
Examples
window.zoo <- get("window.zoo", envir = asNamespace("zoo"))
rt <- window.zoo(SP500, end = "2002-12-31")
model <- fEGarch(egarch_spec(), rt, n_test = 250)
fitted(model)
[Package fEGarch version 1.0.1 Index]