GARCH Models in Python
Chelsea Yang
Data Science Instructor
Can model do a good job explaining the data?
print(gm_result.loglikelihood)
Likelihood + penalty for model complexity
AIC: Akaike's Information Criterion
_Prefer models with the lower information criterion score _
print(gm_result.aic)
print(gm_result.bic)
GARCH Models in Python