Skip to content

Commit

Permalink
docs: fix docs of ARIMAPlus.predict (#512)
Browse files Browse the repository at this point in the history
  • Loading branch information
GarrettWu authored Mar 26, 2024
1 parent 6873b30 commit 3b80f95
Showing 1 changed file with 6 additions and 1 deletion.
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

0 comments on commit 3b80f95

Please sign in to comment.