Advertisement
jroakes

bigquery_forecasting_run

Jun 28th, 2021
1,190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
MySQL 0.17 KB | None | 0 0
  1. -- Forecast 30 days
  2.  
  3. SELECT
  4.  *
  5. FROM
  6.  ML.EXPLAIN_FORECAST(MODEL forecasting.forecast_client_name,
  7.                      STRUCT(30 AS horizon, 0.9 AS confidence_level))
  8. ;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement