oraclesai.pipeline.SpatialColumnTransformer
- class SpatialColumnTransformer(transformers, *, remainder='drop', sparse_threshold=0.3, n_jobs=None, transformer_weights=None, verbose=False, verbose_feature_names_out=True, force_int_remainder_cols=True)
A spatial version of the scikit-learn class ColumnTransformer that can contain spatial estimator steps. It applies transformations to different subsets of columns and concatenates the results.
Methods
__init__(transformers, *[, remainder, ...])fit(X[, y])Calls the
fitmethod of all the transformers using the corresponding column subset.fit_transform(X[, y])Fits all the transformers using the corresponding column subset and concatenates the results.
get_feature_names_out([input_features])Get output feature names for transformation.
get_params([deep])Get parameters for this estimator.
set_params()Set the parameters of this estimator.
transform(X[, y])Calls the
transformmethod of each transformer using the corresponding column subset and concatenate the results.Attributes
Returns a list of tuples in the form (name, Transformer)
named_transformers_Access the fitted transformer by name.
steps