ComeçarComece de graça

Choosing order with AIC and BIC

Now that you have performed a search over many model orders, you will evaluate your results to find the best model order.

The list of tuples of (p,q, AIC value, BIC value) that you created in the last exercise, order_aic_bic, is available in your environment. pandas has also been imported as pd.

Este exercício faz parte do curso

ARIMA Models in Python

Ver curso

Exercício interativo prático

Experimente este exercício completando este código de exemplo.

# Construct DataFrame from order_aic_bic
order_df = pd.DataFrame(____, 
                        columns=[____])

# Print order_df in order of increasing AIC
print(____)

# Print order_df in order of increasing BIC
print(____)
Editar e executar o código