chemotools.smooth#

Smoothing methods to reduce noise while preserving spectral features.

Import from this module:

from chemotools.smooth import (
    MeanFilter,
    MedianFilter,
    SavitzkyGolayFilter,
    WhittakerSmooth,
)

Available Classes#

Class

Description

MeanFilter

Moving average smoothing

MedianFilter

Median filter for noise reduction

SavitzkyGolayFilter

Savitzky-Golay smoothing filter

WhittakerSmooth

Whittaker smoothing with penalized least squares

See Also#

Smoothing Methods Overview - Complete documentation with examples and visual guides