Module mls_lib.objects.scalers.robust_scaler
RobustScaler: Component that performs robust scaling.
Classes
class RobustScaler
-
RobustScaler: Component that performs robust 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 RobustScaler(Scaler): """ RobustScaler: Component that performs robust scaling. """ def __init__(self) -> None: super().__init__(RS())
Ancestors
Inherited members