Creating an ARIMA Model | Teradata Vantage - Creating an ARIMA Model - Teradata VantageCloud Lake

Lake - Analyze Your Data with ClearScape Analytics™

Deployment
VantageCloud
Edition
Lake
Product
Teradata VantageCloud Lake
Release Number
Published
February 2025
ft:locale
en-US
ft:lastEdition
2026-02-20
dita:mapPath
tcl1683670667798.ditamap
dita:ditavalPath
pny1626732985837.ditaval
dita:id
tcl1683670667798
An ARIMA (Autoregressive Integrated Moving Average) model is based on the seasonal portion, the non-seasonal portion, and number of periods per season. The values are the following:
  • p: The order of the auto-regressive component.
  • d: The degree of non-seasonal order differencing.
  • q: The order of the moving-average component.
  • s: The period.
  • P: The degree of seasonal auto-regressive component.
  • D: The seasonal differencing.
  • Q: The degree of seasonal moving-average component.
  • S: The number of periods per season.
The following procedure is an example of how to create an ARIMA model:
  1. Determine if a series is stationary by creating a composite plot using TD_PLOT with the following:
  2. [Series series is non-stationary] Use the following tasks to make the series stationary:
  3. Use TD_ACF and TD_PACF results to perform model identification and determine the best model candidates using the Box and Jenkins ARIMA modeling approach.
  4. Use TD_ARIMAESTIMATE with each model candidate, and store the associated goodness-of-fit metrics in a table.
  5. Perform statistical tests on the ARIMA estimate residuals for each candidate, and look for signs of serial correlation, periodicities, and heteroscedastic variance. Store the results in a table.
  6. Examine the candidates, and eliminate ones which are worth pursuing past the estimate phase.
  7. Use TD_ARIMAVALIDATE on each remaining candidate, and store the goodness-of-fit and model selection metrics in a table.
  8. Perform statistical tests on the ARIMA estimate residuals for each candidate, and determine if the residuals can be classified as being white noise (residual series with zero mean, no periodicities, no serial correlation, and homoscedastic variance). Store the results in a table.
  9. Examine the goodness-of-fit metrics, model selection metrics, and statistical results, and select the best models for forecasting.
  10. Forecast using the selected models.