Forecaster
StatsForecastAutoARIMA
StatsForecast AutoARIMA estimator.
Quickstart
python
from sktime.forecasting.statsforecast import StatsForecastAutoARIMA
estimator = StatsForecastAutoARIMA(start_p: int=2, d: int | None=None, start_q: int=2, max_p: int=5, max_d: int=2, max_q: int=5, start_P: int=1, D: int | None=None, start_Q: int=1, max_P: int=2, max_D: int=1, max_Q: int=2, max_order: int=5, sp: int=1, seasonal: bool=True, stationary: bool=False, information_criterion: str='aicc', test: str='kpss', seasonal_test: str='seas', stepwise: bool=True, n_jobs: int=2, trend: bool=True, method: str | None=None, offset_test_args: str | None=None, seasonal_test_args: dict | None=None, trace: bool=False, n_fits: int=94, with_intercept: bool=True, approximation: bool | None=None, truncate: bool | None=None, blambda: float | None=None, biasadj: bool=False, parallel: bool=False)Parameters(33)
- start_p: int (default 2)
- Starting value of p in stepwise procedure.
- d: int optional (default None)
Order of first-differencing. If missing, will choose a value based on
test.- start_q: int (default 2)
- Starting value of q in stepwise procedure.
- max_p: int (default 5)
- Maximum value of p.
- max_d: int (default 2)
- Maximum number of non-seasonal differences
- max_q: int (default 5)
- Maximum value of q.
- start_P: int (default 1)
- Starting value of P in stepwise procedure.
- D: int optional (default None)
Order of seasonal-differencing. If missing, will choose a value based on
season_test.- start_Q: int (default 1)
- Starting value of Q in stepwise procedure.
- max_P: int (default 2)
- Maximum value of P.
- max_D: int (default 1)
- Maximum number of seasonal differences
- max_Q: int (default 2)
- Maximum value of Q.
- max_order: int (default 5)
- Maximum value of p+q+P+Q if model selection is not stepwise.
- sp: int (default 1)
- Number of observations per unit of time. For example 24 for Hourly data.
- seasonal: bool (default True)
- If False, restricts search to non-seasonal models.
- stationary: bool (default False)
- If True, restricts search to stationary models.
- information_criterion: str (default ‘aicc’)
- Information criterion to be used in model selection. It can be chosen from among the following strings: - ‘aicc’ for Akaike’s information criterion corrected. - ‘aic’ for Akaike’s information criterion. - ‘bic’ for bayesian information criterion.
- test: str (default ‘kpss’)
- Type of unit root test to use. See ndiffs for details. Only ‘kpss’ for the Kwiatkowski-Phillip-Schmidt-Shin test is allowed.
- seasonal_test: str (default ‘seas’)
- This determines which method is used to select the number of seasonal differences. The default method (‘seas’) is to use a measure of seasonal strength computed from an STL decomposition. Other possibilities involve seasonal unit root tests. Only ‘seas’ is allowed.
- stepwise: bool (default True)
- If True, will do stepwise selection (faster). Otherwise, it searches over all models. Non-stepwise selection can be very slow, especially for seasonal models.
- n_jobs: int (default 2)
- Allows the user to specify the amount of parallel processes to be used if parallel = True and stepwise = False. If None, then the number of logical cores is automatically detected and all available cores are used.
- trend: bool (default True)
- If True, models with drift terms are considered.
- method: str optional (default None)
fitting method: maximum likelihood or minimize conditional sum-of-squares. The default (unless there are missing values) is to use conditional-sum-of-squares to find starting values, then maximum likelihood. Can be abbreviated. It can be chosen from among the following strings:
‘CSS-ML’ for conditional sum-of-squares to find starting values and then maximum likelihood.
‘ML’ for maximum likelihood.
‘CSS’ for conditional sum-of-squares.
- offset_test_args: dict optional (default None)
- Additional arguments to be passed to the unit root test.
- seasonal_test_args: dict optional (default None)
- Additional arguments to be passed to the seasonal unit root test. See nsdiffs for details.
- trace: bool (default False)
- If True, the list of ARIMA models considered will be reported.
- n_fits: int (default 94)
- Maximum number of models considered in the stepwise search.
- with_intercept: bool (default True)
- If True, models with a non-zero mean are considered.
- approximation: bool optional (default None)
- If True, estimation is via conditional sums of squares and the information criteria used for model selection are approximated. The final model is still computed using maximum likelihood estimation. Approximation should be used for long time series or a high seasonal period to avoid excessive computation times.
- truncate: bool optional (default None)
- An integer value indicating how many observations to use in model selection. The last truncate values of the series are used to select a model when truncate is not None and approximation=True. All observations are used if either truncate=None or approximation=False.
- blambda: float optional (default None)
- Box-Cox transformation parameter. If lambda=”auto”, then a transformation is automatically selected using BoxCox.lambda. The transformation is ignored if None. Otherwise, data transformed before model is estimated.
- biasadj: bool (default False)
- Use adjusted back-transformed mean for Box-Cox transformations. If transformed data is used to produce forecasts and fitted values, a regular back transformation will result in median forecasts. If biasadj is True, an adjustment will be made to produce mean forecasts and fitted values.
- parallel: bool (default False)
- If True and stepwise = False, then the specification search is done in parallel. This can give a significant speedup on multicore machines.
Examples
>>> from sktime.datasets import load_airline
>>> from sktime.forecasting.statsforecast import StatsForecastAutoARIMA
>>> y = load_airline ()
>>> forecaster = StatsForecastAutoARIMA (
... sp = 12, d = 0, max_p = 2, max_q = 2
... )
>>> forecaster. fit (y) StatsForecastAutoARIMA(
... )
>>> y_pred = forecaster. predict (fh = [1, 2, 3 ])References
- [1 ] https://github.com/robjhyndman/forecast [2 ] https://github.com/Nixtla/statsforecast