## 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)
## Not run:
# ## Plot:
# # Interactive Plot:
# plot(fit)
# ## End(Not run)
Run the code above in your browser using DataLab