evalml.pipelines.components.PolynomialDetrender¶
-
class
evalml.pipelines.components.
PolynomialDetrender
(degree=1, random_seed=0, **kwargs)[source]¶ Removes trends from time series by fitting a polynomial to the data.
-
name
= 'Polynomial Detrender'¶
-
model_family
= 'none'¶
-
hyperparameter_ranges
= {'degree': Integer(low=1, high=3, prior='uniform', transform='identity')}¶
-
default_parameters
= {'degree': 1}¶
Instance attributes
needs_fitting
parameters
Returns the parameters which were used to initialize the component
Methods:
Initialize the PolynomialDetrender.
Constructs a new component with the same parameters and random state.
Describe a component and its parameters
Fits the PolynomialDetrender.
Removes fitted trend from target variable.
Adds back fitted trend to target variable.
Loads component at file path
Saves component at file path
Removes fitted trend from target variable.
-