Module mls_lib.objects.scalers.min_max_scaler

MinMaxScaler: Component that performs min max scaling.

Classes

class MinMaxScaler

MinMaxScaler: Component that performs min max 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 MinMaxScaler(Scaler):
    """ MinMaxScaler: Component that performs min max scaling. """
    def __init__(self) -> None:
        super().__init__(MMS())

Ancestors

Inherited members