Fill gaps from assistant conversations: ARIMA exogenous and simulation docs - #58
Open
mintlify[bot] wants to merge 2 commits into
Open
Fill gaps from assistant conversations: ARIMA exogenous and simulation docs#58mintlify[bot] wants to merge 2 commits into
mintlify[bot] wants to merge 2 commits into
Conversation
…icient/troubleshooting guidance
Author
|
Preview deployment for your docs. Learn more about Mintlify Previews.
|
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fills two StatsForecast documentation gaps that caused repeated unanswered assistant conversations: ARIMA exogenous-regressor mechanics/errors and the missing "Handling large simulations" section.
Changes
statsforecast/docs/tutorials/simulation.html.mdx: added the "Handling Large Simulations" section that the page outline promised but the body lacked. Covers the 100,000-point warning, whyAutoARIMAsimulations are slow (models are refit on eachStatsForecast.simulatecall, including the order search), how to reuse a fitted model via the model-level API, thatn_jobsparallelizes across series (not paths), and seed reproducibility.statsforecast/docs/how-to-guides/exogenous.html.mdx: added "Access the fitted coefficients" (regression-with-ARIMA-errors formulation,sf.fitted_[i, j].model_['coef']dict withex_1,ex_2,intercept/driftkeys) and "Troubleshooting" coveringxreg is rank deficient(training-only check, includes the implicit trend column, no check on futureX_df), theExpected X to have shapeerror, and the missing-X_dferror.Context
Recurring assistant queries asked about rank-deficient exogenous columns in the forecast horizon, extracting exogenous coefficient contributions,
X_dfshape errors, and slowAutoARIMAsimulations. All statements were verified against the statsforecast source (arima.py,models.py,core.py).