1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76
|
\name{garch-methods}
\alias{garch-methods}
\alias{predict.garch}
\alias{coef.garch}
\alias{vcov.garch}
\alias{residuals.garch}
\alias{fitted.garch}
\alias{print.garch}
\alias{plot.garch}
\alias{logLik.garch}
\title{Methods for Fitted GARCH Models}
\description{
Methods for fitted GARCH model objects.
}
\usage{
\method{predict}{garch}(object, newdata, genuine = FALSE, \dots)
\method{coef}{garch}(object, \dots)
\method{vcov}{garch}(object, \dots)
\method{residuals}{garch}(object, \dots)
\method{fitted}{garch}(object, \dots)
\method{print}{garch}(x, digits = max(3, getOption("digits") - 3), \dots)
\method{plot}{garch}(x, ask = interactive(), \dots)
\method{logLik}{garch}(object, \dots)
}
\arguments{
\item{object, x}{an object of class \code{"garch"}; usually, a result
of a call to \code{\link{garch}}.}
\item{newdata}{a numeric vector or time series to compute GARCH
predictions. Defaults to \code{eval(parse(text=object$series))}.}
\item{genuine}{a logical indicating whether a genuine prediction
should be made, i.e., a prediction for which there is no target
observation available.}
\item{digits}{see \code{\link{printCoefmat}}.}
\item{ask}{Should the \code{plot} method work interactively? See
\code{\link{interactive}}.}
\item{\dots}{further arguments passed to or from other methods.}
}
\details{
\code{predict} returns +/- the conditional standard deviation
predictions from a fitted GARCH model.
\code{coef} returns the coefficient estimates.
\code{vcov} the associated covariance matrix estimate (outer product of gradients estimator).
\code{residuals} returns the GARCH residuals, i.e., the time series
used to fit the model divided by the computed conditional standard
deviation predictions for this series. Under the assumption of
conditional normality the residual series should be i.i.d. standard
normal.
\code{fitted} returns +/- the conditional standard deviation
predictions for the series which has been used to fit the model.
\code{plot} graphically investigates normality and remaining ARCH
effects for the residuals.
\code{logLik} returns the log-likelihood value of the GARCH(p, q)
model represented by \code{object} evaluated at the estimated
coefficients. It is assumed that first max(p, q) values are fixed.
}
\value{
For \code{predict} a bivariate time series (two-column matrix) of
predictions.
For \code{coef}, a numeric vector, for \code{residuals} and
\code{fitted} a univariate (vector) and a bivariate time series
(two-column matrix), respectively.
For \code{plot} and \code{print}, the fitted GARCH model object.
}
\author{
A. Trapletti
}
\keyword{models}
\keyword{ts}
|