Skip to content

Commit

Permalink
Merge pull request #4790 from statsmodels/sarimax-kparams
Browse files Browse the repository at this point in the history
BUG: k_params if seasonal MA
  • Loading branch information
ChadFulton committed Jul 9, 2018
2 parents 68c40b0 + b8a5053 commit 3caea92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion statsmodels/tsa/statespace/sarimax.py
Original file line number Diff line number Diff line change
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 3caea92

Please sign in to comment.