bigframes.ml.ensemble.XGBRegressor.predict#

XGBRegressor.predict(X:DataFrame|Series|DataFrame|Series)DataFrame[source]#

Predict using the XGB model.

Parameters:

X (bigframes.dataframe.DataFrame orbigframes.series.Series) – Series or DataFrame of shape (n_samples, n_features). Samples.

Returns:

DataFrame of shape (n_samples, n_input_columns + n_prediction_columns). Returns predicted values.

Return type:

bigframes.dataframe.DataFrame

This Page