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