Module mls_lib.objects.scalers.max_abs_scaler
MaxAbsScaler: Component that performs max abs scaling.
Classes
class MaxAbsScaler
-
MaxAbsScaler: Component that performs max abs scaling.
Initializes the class instance with a given scaler and column.
Args
scaler
:object
- The scaler object to be used for scaling the data.
columns
:list
- A list containing the column name(s) to be scaled.
Returns
None
Expand source code
class MaxAbsScaler(Scaler): """ MaxAbsScaler: Component that performs max abs scaling. """ def __init__(self) -> None: super().__init__(MAS())
Ancestors
Inherited members