8000 fixed aic computation by SwytDrymz · Pull Request #9504 · statsmodels/statsmodels · GitHub
[go: up one dir, main page]

Skip to content

fixed aic computation #9504

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions statsmodels/tsa/ar_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -1053,7 +1053,7 @@ def aic(self):
r"""
Akaike Information Criterion using Lutkepohl's definition.

:math:`-2 llf + \ln(nobs) (1 + df_{model})`
:math:`-2 llf + \ln(nobs) (df_{model})`
"""
# This is based on loglike with dropped constant terms ?
# Lutkepohl
Expand All @@ -1062,7 +1062,7 @@ def aic(self):
# Stata defintion
# nobs = self.nobs
# return -2 * self.llf/nobs + 2 * (self.k_ar+self.k_trend)/nobs
return eval_measures.aic(self.llf, self.nobs, self.df_model + 1)
return eval_measures.aic(self.llf, self.nobs, self.df_model)

@cache_readonly
def hqic(self):
Expand Down
0