Companies across industries rely heavily on time series forecasting to project product demand, forecast sales, project online subscription/cancellation, and for many other use cases. This makes time series forecasting one of the most popular models in BigQuery ML.
What is multivariate time series forecasting? For example, if you want to forecast ice cream sales, it is helpful to forecast using the external covariant “weather” along with the target metric “past sales.” Multivariate time series forecasting in BigQuery lets you create more accurate forecasting models without having to move data out of BigQuery.
When it comes to time series forecasting, covariates or features besides the target time series are often used to provide better forecasting. Up until now, BigQuery ML has only supported univariate time series modeling using the ARIMA_PLUS model (documentation). It is one of the most popular BigQuery ML models.
While ARIMA_PLUS is widely used, forecasting using only the target variable is sometimes not sufficient. Some patterns inside the time series strongly depend on other features. We see strong customer demand for multivariate time series forecasting support that allows you to forecast using covariate and features.
We recently announced the public preview of multivariate time series forecasting with external regressors. We are introducing a new model type ARIMA_PLUS_XREG, where the XREG refers to external regressors or side features. You can use the SELECT statement to choose side features with the target time series. This new model leverages the BigQuery ML linear regression model to include the side features and the BigQuery ML ARIMA_PLUS model to model the linear regression residuals.
The ARIMA_PLUS_XREG model supports the following capabilities:
Automatic feature engineering for numerical, categorical, and array features.
All the model capabilities of the ARIMA_PLUS model, such as detecting seasonal trends, holidays, etc.
Headlight, an AI-powered ad agency, is using a multivariate forecasting model to determine conversion volumes for down-funnel metrics like subscriptions, cancellations, etc. based on cohort age. You can check out the customer video and demo here.
The following sections show some examples of the new ARIMA_PLUS_XREG model in BigQuery ML. In this example, we explore the bigquery-public-data.epa_historical_air_quality
dataset, which has daily air quality and weather information. We use the model to forecast the PM2.51 , based on its historical data and some covariates, such as temperature and wind speed.
The PM2.5, temperature, and wind speed data are in separate tables. To simplify the queries, create a new table by joining those tables into a new table “bqml_test.seattle_air_quality_daily,” with the following columns:
date: the date of the observation
PM2.5: the average PM2.5 value for each day
wind_speed: the average wind speed for each day
temperature: the highest temperature for each day
The new table has daily data from 2009-08-11 to 2022-01-31.
Here is a preview of the data:
The “CREATE MODEL” query of the new multivariate model, ARIMA_PLUS_XREG, is very similar to the current ARIMA_PLUS model. The major differences are the MODEL_TYPE and inclusion of feature columns in the SELECT statement.
With the created model, you can use the ML.FORECAST function to forecast the future data. Compared to the ARIMA_PLUS model, you have to specify the future covariates as an input.
After running the above query, you can see the forecasting results:
You can use the ML.EVALUATE function to evaluate the forecasting errors. You can set perform_aggregation to “TRUE” to get the aggregated error metric or “FALSE” to see the per timestamp errors.
The evaluation result of ARIMA_PLUS_XREG is as follows:
As a comparison, we also show the univariate forecasting ARIMA_PLUS result in the following table:
Compared to ARIMA_PLUS, ARIMA_PLUS_XREG performs better on all measured metrics on this specific dataset and date range.
In the previous example, we demonstrated how to create a multivariate time series forecasting model, forecast future values using the model, and evaluate the forecasted results. The ML.ARIMA_EVALUATE and ML.ARIMA_COEFFICIENTS table value functions are also helpful for investigating your model. Based on the feedback from users, the model does the following to improve user productivity.
It shortens the time spent preprocessing data and lets users keep their data in BigQuery when doing machine learning.
It reduces overhead for the users who know SQL to do machine learning work in BigQuery.
For more information about the ARIMA_PLUS_XREG model, please see thedocumentation here.
In this blogpost, we described the BigQuery ML Multivariate Time Series Forecast model, which is now available for public preview. We also showed a code demo for a data scientist, data engineer, or data analyst to enable the multivariate time series forecast model.
The following features are coming soon:
Large-scale multivariate time series, i.e., training millions of models for millions of multivariate time series in a single CREATE MODEL statement
Multivariate time series anomaly detection
Thanks to Xi Cheng, Honglin Zheng, Jiashang Liu, Amir Hormati, Mingge Deng and Abhinav Khushraj from the BigQuery ML team. Also thanks to Weijie Shen from the Google Resource Efficiency Data Science team.
1. A measure of air pollution from fine particulate matter
The Innovators Showcase at NRF 2025: Retail’s Big Show recognizes the top 50 tech leaders…
Information Retrieval (IR) systems used in search and recommendation platforms frequently employ Learning-to-Rank (LTR) models…
In Part 1 of this series, we introduced the newly launched ModelTrainer class on the…
Dun & Bradstreet, a leading global provider of business data and analytics, is committed to…
Quantum calculations of molecular systems often require extraordinary amounts of computing power; these calculations are…
Today, we’re announcing Gemini 2.0, our most capable multimodal AI model yet.