evalml.pipelines.components.SelectColumns

Inheritance diagram of SelectColumns
class evalml.pipelines.components.SelectColumns(columns=None, random_state=0, **kwargs)[source]

Selects specified columns in input data.

name = 'Select Columns Transformer'
model_family = 'none'
hyperparameter_ranges = {}
default_parameters = {'columns': None}

Instance attributes

parameters

Returns the parameters which were used to initialize the component

Methods:

__init__

Initalizes an transformer that drops specified columns in input data.

clone

Constructs a new component with the same parameters

describe

Describe a component and its parameters

fit

‘Fits’ the transformer by checking if the column names are present in the dataset.

fit_transform

Fit transformer to data, then transform data.

transform

Transforms data X by selecting columns.