## S4 method for signature 'fGARCH,missing'plot(x, which ="ask",...)
Arguments
x: an object of class "fGARCH".
which: a character string or a vector of positive integers specifying which plot(s) should be displayed, see section Details .
...: optional arguments to be passed.
Details
The plot method for "fGARCH" objects offers a selection of diagnostic, exploratory, and presentation plots from a menu. Argument which can be used to request specific plots. This is particularly useful in scripts.
If which is of length larger than one, all requested plots are produced. For this to be useful, the graphics window should be split beforehand in subwindows, e.g., using par(mfrow = ...), par(mfcol = ...), or layout() (see section Examples ). If this is not done, then only the last plot will be visible.
The following graphs are available:
1
Time SeriesPlot
2
Conditional Standard Deviation Plot
3
Series Plot with 2 Conditional SD Superimposed
4
Autocorrelation function Plot of Observations
5
Autocorrelation function Plot of Squared Observations
6
Cross Correlation Plot
7
Residuals Plot
8
Conditional Standard Deviations Plot
9
Standardized Residuals Plot
10
ACF Plot of Standardized Residuals
11
ACF Plot of Squared Standardized Residuals
12
Cross Correlation Plot between r2 and r
13
Quantile-Quantile Plot of Standardized Residuals
14
Series with -VaR Superimposed
15
Series with -ES Superimposed
16
Series with -VaR & -ES Superimposed
Author(s)
Diethelm Wuertz for the Rmetrics -port;
VaR and ES graphs were added by Georgi N. Boshnakov in v4033.92
See Also
fGARCH method for tsdiag,
garchFit, class fGARCH,
predict, fitted, residuals
VaR
ES
plot
Examples
## simulate a Garch(1,1) time seriesx <- garchSim(n =200)head(x)## fit GARCH(1,1) modelfit <- garchFit(formula =~ garch(1,1), data = x, trace =FALSE)## Not run:## choose plots interactivelyplot(fit)## End(Not run)## Batch Plot:plot(fit, which =3)## a 2 by 2 matrix of plotsop <- par(mfrow = c(2,2))# prepare 2x2 windowplot(fit, which = c(10,11,3,16))# plotpar(op)# restore the previous layout