evalml.pipelines.components.DropColumns¶
-
class
evalml.pipelines.components.
DropColumns
(columns=None, random_state=0, **kwargs)[source]¶ Drops specified columns in input data.
-
name
= 'Drop 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:
Initalizes an transformer that drops specified columns in input data.
Constructs a new component with the same parameters
Describe a component and its parameters
‘Fits’ the transformer by checking if the column names are present in the dataset.
Fit transformer to data, then transform data.
Transforms data X by dropping columns.
-