Session Ready
Exercise

Estimating an MA Model

You will estimate the MA(1) parameter, \(\small \theta\), of one of the simulated series that you generated in the earlier exercise. Since the parameters are known for a simulated series, it is a good way to understand the estimation routines before applying it to real data.

For simulated_data_1 with a true \(\small \theta\) of -0.9, you will print out the estimate of \(\small \theta\). In addition, you will also print out the entire output that is produced when you fit a time series, so you can get an idea of what other tests and summary statistics are available in statsmodels.

Instructions
100 XP
  • Import the class ARMA in the module statsmodels.tsa.arima_model.
  • Create an instance of the ARMA class called mod using the simulated data simulated_data_1 and the order (p,q) of the model (in this case, for an MA(1)), is order=(0,1).
  • Fit the model mod using the method .fit() and save it in a results object called res.
  • Print out the entire summary of results using the .summary() method.
  • Just print out an estimate of the constant and theta parameter using the .params attribute (no arguments).