1. Learn
  2. /
  3. Courses
  4. /
  5. ARIMA Models in Python

Connected

Exercise

Model order

When fitting and working with AR, MA and ARMA models it is very important to understand the model order. You will need to pick the model order when fitting. Picking this correctly will give you a better fitting model which makes better predictions. So in this section you will practice working with model order.

Instructions 1/3

undefined XP
    1
    2
    3

Question

  • Print ar_coefs and ma_coefs which are available in the console. If you were to use these in the arma_generate_sample() function what would be the order of the data?

Possible answers