evalml.pipelines.components.DropNullColumns¶
-
class
evalml.pipelines.components.
DropNullColumns
(pct_null_threshold=1.0, random_seed=0, **kwargs)[source]¶ Transformer to drop features whose percentage of NaN values exceeds a specified threshold
-
name
= 'Drop Null Columns Transformer'¶
-
model_family
= 'none'¶
-
hyperparameter_ranges
= {}¶
-
default_parameters
= {'pct_null_threshold': 1.0}¶
Instance attributes
needs_fitting
parameters
Returns the parameters which were used to initialize the component
Methods:
Initalizes an transformer to drop features whose percentage of NaN values exceeds a specified threshold.
Constructs a new component with the same parameters and random state.
Describe a component and its parameters
Fits component to data
Fits on X and transforms X
Loads component at file path
Saves component at file path
Transforms data X by dropping columns that exceed the threshold of null values.
-