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 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106
|
\name{plot-methods}
\docType{methods}
\alias{plot-methods}
\alias{plot,ANY,ANY-method}
\alias{plot,fGARCH,missing-method}
\title{GARCH Plot Methods}
\description{
Plot methods for GARCH Modelling.
}
\usage{
\S4method{plot}{fGARCH,missing}(x, which = "ask", \dots)
}
\arguments{
\item{x}{
an object of class \code{"fREG"}
}
\item{which}{
a character string denoting which plot should be displayed.
}
\item{\dots}{
optional arguments to be passed.
}
}
\section{Methods}{
\describe{
\item{x = "ANY", y = "ANY"}{
Generic function.
}
\item{x = "fGARCH", y = "missing"}{
Plot function for objects of class \code{"fGARCH"}.
}
}
}
\details{
The generic function \code{plot} allows to display 13 graphs. These
are the \cr
Time SeriesPlot\cr
Conditional Standard Deviation Plot\cr
Series Plot with 2 Conditional SD Superimposed\cr
Autocorrelation function Plot of Observations\cr
Autocorrelation function Plot of Squared Observations\cr
Cross Correlation Plot\cr
Residuals Plot\cr
Conditional Standard Deviations Plot\cr
Standardized Residuals Plot\cr
ACF Plot of Standardized Residuals\cr
ACF Plot of Squared Standardized Residuals\cr
Cross Correlation Plot between $r^2$ and r\cr
Quantile-Quantile Plot of Standardized Residuals\cr
}
\author{
Diethelm Wuertz for the Rmetrics \R-port.
}
\examples{
## garchSim -
# Default Garch(1,1) Model:
x = garchSim(n = 200)
head(x)
## garchFit -
fit = garchFit(formula = ~ garch(1, 1), data = x, trace = FALSE)
## Batch Plot:
plot(fit, which = 3)
\dontrun{
## Plot:
# Interactive Plot:
plot(fit)
}
}
\keyword{models}
|