@@ -95,10 +95,18 @@ using the
9595and the `bigframes.ml.compose module <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.compose >`_.
9696BigQuery DataFrames offers the following transformations:
9797
98- * Use the `OneHotEncoder class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.preprocessing.OneHotEncoder >`_
99- in the ``bigframes.ml.preprocessing `` module to transform categorical values into numeric format.
98+ * Use the `KBinsDiscretizer class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.compose.ColumnTransformer >`_
99+ in the ``bigframes.ml.preprocessing `` module to bin continuous data into intervals.
100+ * Use the `LabelEncoder class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.preprocessing.LabelEncoder >`_
101+ in the ``bigframes.ml.preprocessing `` module to normalize the target labels as integer values.
102+ * Use the `MaxAbsScaler class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.preprocessing.MaxAbsScaler >`_
103+ in the ``bigframes.ml.preprocessing `` module to scale each feature to the range ``[-1, 1] `` by its maximum absolute value.
104+ * Use the `MinMaxScaler class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.preprocessing.MinMaxScaler >`_
105+ in the ``bigframes.ml.preprocessing `` module to standardize features by scaling each feature to the range ``[0, 1] ``.
100106* Use the `StandardScaler class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.preprocessing.StandardScaler >`_
101107 in the ``bigframes.ml.preprocessing `` module to standardize features by removing the mean and scaling to unit variance.
108+ * Use the `OneHotEncoder class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.preprocessing.OneHotEncoder >`_
109+ in the ``bigframes.ml.preprocessing `` module to transform categorical values into numeric format.
102110* Use the `ColumnTransformer class <https://cloud.google.com/python/docs/reference/bigframes/latest/bigframes.ml.compose.ColumnTransformer >`_
103111 in the ``bigframes.ml.compose `` module to apply transformers to DataFrames columns.
104112
0 commit comments