File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
bigframes/bigquery/_operations Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -574,13 +574,16 @@ def forecast(
574574 (https://cloud.google.com/products#product-launch-stages).
575575
576576 Args:
577+ df (DataFrame):
578+ The dataframe that contains the data that you want to forecast. It could be either a BigFrames Dataframe or
579+ a pandas DataFrame. If it's a pandas DataFrame, the global BigQuery session will be used to load the data.
580+ data_col (str):
581+ A str value that specifies the name of the data column. The data column contains the data to forecast.
582+ The data column must use one of the following data types: INT64, NUMERIC and FLOAT64
577583 timestamp_col (str):
578584 A str value that specified the name of the time points column.
579585 The time points column provides the time points used to generate the forecast.
580586 The time points column must use one of the following data types: TIMESTAMP, DATE and DATETIME
581- data_col (str):
582- A str value that specifies the name of the data column. The data column contains the data to forecast.
583- The data column must use one of the following data types: INT64, NUMERIC and FLOAT64
584587 model (str, default "TimesFM 2.0"):
585588 A str value that specifies the name of the model. TimesFM 2.0 is the only supported value, and is the default value.
586589 id_cols (Iterable[str], optional):
You can’t perform that action at this time.
0 commit comments