Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion bigframes/ml/forecasting.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,12 @@ def _fit(
def predict(
self, X=None, *, horizon: int = 3, confidence_level: float = 0.95
) -> bpd.DataFrame:
"""Predict the closest cluster for each sample in X.
"""Forecast time series at future horizon.

.. note::

Output matches that of the BigQuery ML.FORECAST function.
See: https://cloud.google.com/bigquery/docs/reference/standard-sql/bigqueryml-syntax-forecast

Args:
X (default None):
Expand Down