chemotools.scale ================ .. currentmodule:: chemotools.scale Scaling methods to normalize spectral intensity and improve model performance. **Import from this module:** .. code-block:: python from chemotools.scale import ( MinMaxScaler, NormScaler, PointScaler, ) Available Classes ----------------- .. list-table:: :widths: 30 70 :header-rows: 1 * - Class - Description * - :doc:`MinMaxScaler ` - Scale features to a given range (min-max normalization) * - :doc:`NormScaler ` - Scale by vector norm (L1, L2, or max) * - :doc:`PointScaler ` - Scale relative to a specific point in the spectrum See Also -------- :doc:`Scale Methods Overview ` - Complete documentation with examples and visual guides