Source code for autoflow.pipeline.components.preprocessing.scale.standardize
from autoflow.pipeline.components.feature_engineer_base import AutoFlowFeatureEngineerAlgorithm
__all__=["StandardScaler"]
[docs]class StandardScaler(AutoFlowFeatureEngineerAlgorithm):
class__ = "StandardScaler"
module__ = "sklearn.preprocessing"