MinMaxScaler
- class aixd.data.transform.MinMaxScaler(target_range: tuple = (0, 1), per_column: bool = True)[source]
- Bases: - DataObjectTransform- Implements a min-max scaling of the data. - Parameters:
- target_range (tuple, default=(0, 1)) – The target range for the scaling. 
- per_column (bool, default=True) – If set normalization is performed per column for multi-dim DataObjects. 
 
 - Methods - Inverse transform of the input. - Returns true if transformation strategy is fitted. - Method to implement to reset fitted values. - Transforms the input. - Inherited Methods - Copies the transformation. - Fits the transformation. - Fits and transforms the input.