Navigation Menu

Skip to content
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

ARMA breaks with a 1d exog #248

Closed
jseabold opened this issue May 4, 2012 · 0 comments
Closed

ARMA breaks with a 1d exog #248

jseabold opened this issue May 4, 2012 · 0 comments
Labels
Milestone

Comments

@jseabold
Copy link
Member

jseabold commented May 4, 2012

from statsmodels.tools.tools import webuse
import statsmodels.api as sm

dta = webuse('friedman2')[52:52+92] # only through 1981q4 with no missing
endog = dta['consump']
exog = dta['m2']
exog = exog[:,None] # bug that it needs to be 2d

mod = sm.tsa.ARMA(endog, exog).fit(order=(1,1))
PierreBdR pushed a commit to PierreBdR/statsmodels that referenced this issue Sep 2, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

No branches or pull requests

1 participant