| [ Web Proxy ] |
| Viewing: https://dataframes.bigquery.dev/reference/api/bigframes.ml.compose.ColumnTransformer.html | [Back] [Original] |
Section Navigation
Applies transformers to columns of BigQuery DataFrames.
This estimator allows different columns or column subsets of the input to be transformed separately, and the features generated by each transformer will be concatenated to form a single feature space. This is useful for heterogeneous or columnar data to combine several feature extraction mechanisms or transformations into a single transformer.
transformers List of (name, transformer, columns) tuples specifying the transformer objects to be applied to subsets of the data.
Fit all transformers using X.
X (bigframes.dataframe.DataFrame or bigframes.series.Series or pandas.core.frame.DataFrame or pandas.core.series.Series) The Series or DataFrame of shape (n_samples, n_features). Training vector, where n_samples is the number of samples and n_features is the number of features.
Fitted estimator.
Transform X separately by each transformer, concatenate results.
X (bigframes.dataframe.DataFrame or bigframes.series.Series or pandas.core.frame.DataFrame or pandas.core.series.Series) The Series or DataFrame to be transformed by subset.
Transformed result.
The collection of transformers as tuples of (name, transformer, column).
Copyright 2019, Google.
Created using Sphinx 8.1.3.
Built with the PyData Sphinx Theme 0.19.0.
| Web Proxy Viewer | New URL | Original Page |