-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Convergence information being displayed during ARIMA.fit() regardless of disp value #3191
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
Comments
Can't reproduce from statsmodels.tsa.api import ARIMA
import numpy as np
y = np.random.randn(1000)
arima_model = ARIMA(y, order=(1, 1, 1))
arima_results = arima_model.fit(disp=False) # or disp=-1 What deps do you have installed? from statsmodels.api import show_versions
show_versions()
|
|
Strange, can't repro on Linux either. Versions are essentially identical.
|
If you use a fresh IPython and just paste my code do you see output? |
is it possible that there is the lbfgsb log file piped to the console? I'm not sure what the current status is, but some time ago the log file was always created unless the special option turned it of. |
... statsmodels.api.SARIMAX.fit gives this output. statsmodels/statsmodels/tsa/arima_model.py Line 567 in e1822d4
|
... while the issue title states that it is/was the other way round. Anyway, still a (wrong fix of this?) bug: the disp parameter on ARIMA.fit is still ignored. |
fmin_l_bfgs_b has two display keywords, disp and iprint, so it's a bit messy default |
another issue in @plankthom ARIMA code link is that we don't have in general separate options for preliminary estimation of start_params. Those are usually hard coded to no display. In discrete models I introduced a backdoor through an unadvertised (?) extra kwarg |
The text was updated successfully, but these errors were encountered: