# `pp_savgol` — Savitzky–Golay smoothing / derivative _Group_: **Preprocessing** · _Binding_: `n4m.sklearn.SavitzkyGolay` · _C ABI_: `n4m_pp_savgol_*` ## Description scipy.signal.savgol_filter parity. ### Parameters | Name | Type | Default | |------|------|---------| | `window_length` | `int` | `5` | | `polyorder` | `int` | `2` | | `deriv` | `int` | `0` | | `delta` | `float` | `1.0` | | `mode` | `str` | `'mirror'` | | `cval` | `float` | `0.0` | ## Explanations ### Bibliographic source Savitzky, A. & Golay, M. J. E. (1964). *Smoothing and Differentiation of Data by Simplified Least Squares Procedures*. Analytical Chemistry 36(8), 1627–1639. ### Mathematical principle Within a sliding window of odd length $w$, a polynomial of order $p$ is fit by least squares; the smoothed value (or its $d$-th derivative) at the window centre is a fixed linear combination of the windowed points. Because the convolution coefficients are precomputed, SG simultaneously denoises and differentiates while preserving peak shape far better than a moving average. ### Implementation C ABI `n4m_pp_savgol_*` in libn4m (create / apply / destroy lifecycle), wrapped by `n4m.sklearn.SavitzkyGolay`. The same numerical kernel backs every language binding. ### Usage ```python from n4m.sklearn import SavitzkyGolay op = SavitzkyGolay() X_transformed = op.fit_transform(X) ``` ### Benchmarks Adaptive wall-clock per cell measured against [`full_matrix.csv`](../benchmarks/overview.md). Only backends that implement this method are listed; libraries without the method are omitted. **Verdict** · ✓ ref / ≈ ref / ~ shape mark a reference-gate pass at strict / relaxed / qualitative tolerance · ✓ bind = pls4all binding agrees with the C++ baseline · ✗ divergent · ⚠ error · — not run. The fastest backend per column is marked 🏆. **Reference gate**: strict — numeric equivalence (`rmse_rel_tol ≤ 1e-12`). ::::{tab-set} :class: parity-tabs :::{tab-item} 1 thread :sync: threads-1
| Backend | Parity | 50×250 (ms) | 250×50 (ms) |
|---|---|---|---|
| C++ native · libn4m | |||
pls4all.cpp.blas+omp | ✓ ref | — | — |
| Python · external | |||
ref.python_numpy | source | — | — |