general#
General feature transforms for time series data.
This module provides general-purpose transforms for time series datasets, including data cleaning, normalization, and feature engineering utilities that can be applied across various domains.
Submodules#
Transform for dimensionality reduction in time series data. |
|
Transform for removing completely empty columns from time series datasets. |
|
Transform for flagging feature values inside or outside observed training ranges. |
|
Missing values imputation transform for time series datasets. |
|
Transform for dropping rows containing NaN values. |
|
Transform for handling out-of-range feature values. |
|
Sample weighting for time series forecasting models. |
|
Transform for scaling features in time series data. |
|
Transform for dropping for dropping features from dataset based on FeatureSelection. |
|
Transform for shifting features to align aggregation intervals. |
Classes#
|
Reduce the dimensionality of a given set of features. |
|
Transform that removes columns which are completely empty (all values are missing). |
|
Transform that flags specified features to their observed min and max values. |
|
Transform that imputes missing values in specified columns of time series data. |
|
Transform that drops rows containing NaN values in selected columns. |
|
Transform that handles out-of-range values for selected features. |
|
Configuration for sample weighting parameters. |
|
Transform that adds sample weights based on target variable distribution. |
|
Transform that scales time series data using various scikit-learn scaling methods. |
|
Selects features based on FeatureSelection. |
|
Transform that shifts features to align their aggregation interval with the target. |