chemotools.smooth ================= .. currentmodule:: chemotools.smooth Smoothing methods to reduce noise while preserving spectral features. **Import from this module:** .. code-block:: python from chemotools.smooth import ( MeanFilter, MedianFilter, ModifiedSincFilter, SavitzkyGolayFilter, WhittakerSmooth, ) Available Classes ----------------- .. list-table:: :widths: 30 70 :header-rows: 1 * - Class - Description * - :doc:`MeanFilter ` - Moving average smoothing * - :doc:`MedianFilter ` - Median filter for noise reduction * - :doc:`ModifiedSincFilter ` - Modified Sinc smoothing filter * - :doc:`SavitzkyGolayFilter ` - Savitzky-Golay smoothing filter * - :doc:`WhittakerSmooth ` - Whittaker smoothing with penalized least squares See Also -------- :doc:`Smoothing Methods Overview ` - Complete documentation with examples and visual guides