-
Notifications
You must be signed in to change notification settings - Fork 292
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
ARIMA level/quantile compatibility, missing nbdev_flow, protected gif #102
Conversation
Check out this pull request on See visual diffs & provide feedback on Jupyter Notebooks. Powered by ReviewNB |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice @kdgutier! Could you please remove the html changes? To display the outputs in the docs :)
Additionally, we need to change the following line (AutoARIMA class, predict method), statsforecast/statsforecast/arima.py Line 2422 in 85253e5
The line orders the low levels; the proposed change makes it unnecessary. We just have to remove the |
statsforecast/arima.py
Outdated
@@ -2451,7 +2451,7 @@ def predict_in_sample(self, level: Optional[Union[int, Tuple[int]]] = None): | |||
lo = pd.DataFrame( | |||
fitted_values.values.reshape(-1, 1) - quantiles * se.reshape(-1, 1), | |||
columns=[f'lo_{l}%' for l in _level], |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We have to include reversed
here for _level
.
models.auto_arima
for quantile parsing compatibility.nbdev_flow