## 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)
if (FALSE) {
## Plot:
# Interactive Plot:
plot(fit)
}
Run the code above in your browser using DataLab