The ML.ARIMA_COEFFICIENTS function

This document describes the ML.ARIMA_COEFFICIENTS function, which lets you see the ARIMA coefficients and the weights of the external regressors for ARIMA_PLUS and ARIMA_PLUS_XREG time series models.

Syntax

ML.ARIMA_COEFFICIENTS(MODEL `project_id.dataset.model`)

Arguments

ML.ARIMA_COEFFICIENTS takes the following arguments:

Output

ML.ARIMA_COEFFICIENTS returns the following columns:

Example

The following example retrieves the model coefficients information from the model mydataset.mymodel in your default project:

SELECT
  *
FROM
  ML.ARIMA_COEFFICIENTS(MODEL `mydataset.mymodel`)

What's next