ARIMA Output - Teradata Vantage

Machine Learning Engine Analytic Function Reference

Product
Teradata Vantage
Release Number
9.02
9.01
2.0
1.3
Published
February 2022
Language
English (United States)
Last Update
2022-02-10
dita:mapPath
rnn1580259159235.ditamap
dita:ditavalPath
ybt1582220416951.ditaval
dita:id
B700-4003
lifecycle
previous
Product Category
Teradata Vantageā„¢
Table Description
ModelTable Contains coefficients of model. Function outputs coefficients to both ModelTable and screen.
[Optional] ResidualTable Contains value and residual for each time point.

ModelTable Schema

Column Data Type Description
partition_column Same as in input table [Column appears once for each partition_column specified in PartitionColumns.] Partition identifier.
td_arima_partition_id INTEGER [Column appears only if you omit PartitionColumns.] Random partition identifier value.
coef CHARACTER(128) Coefficient name from following table.
value_col CHARACTER(300) Values from following table.

Model Coefficients

Coefficient Name Value
coef Vector of coefficients p, d, q, sp, sd, and sq.
ar_params Vector of auto regression parameters that correspond to coefficients.
ma_params Vector of moving average parameters that correspond to coefficients.
seasonal_ar_params Vector of seasonal auto regressive parameters that correspond to coefficients.
seasonal_ma_params Vector of seasonal moving average parameters that correspond to coefficients.
mean_param [Column appears only with IncludeMean ('true').] Mean value.
drift_params [Column appears only with IncludeDrift ('true').] Drift value.
period Seasonal model: Cycle period.

Nonseasonal model: 0

sigma2 Variance.
aic Akaike information criterion.
bic Bayesian information criterion.
converged Whether algorithm converged ('true' or 'false').

ResidualTable Schema

Column Data Type Description
partition_column Same as in InputTable [Column appears once for each partition_column specified in PartitionColumns.] Partition identifier.
td_arima_partition_id INTEGER [Column appears only if you omit PartitionColumns.] Random partition identifier value.
time_column Any [Column appears once for each specified time_column.] Sequence (time points) of input parameter.
value Same type as target_column in InputTable Time point value.
residual DOUBLE PRECISION Time point residual.