Skip to content

Commit

Permalink
BUG: k_params if seasonal MA
Browse files Browse the repository at this point in the history
  • Loading branch information
ChadFulton committed Jul 9, 2018
1 parent 68c40b0 commit b8a5053
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsmodels/tsa/statespace/sarimax.py
Expand Up @@ -476,7 +476,7 @@ def __init__(self, endog, exog=None, order=(1, 0, 0),
# Number of parameters
self.k_params = (
self.k_ar_params + self.k_ma_params +
self.k_seasonal_ar_params + self.k_seasonal_ar_params +
self.k_seasonal_ar_params + self.k_seasonal_ma_params +
self.k_trend +
self.measurement_error +
int(not self.concentrate_scale)
Expand Down

0 comments on commit b8a5053

Please sign in to comment.