lowess 1.3.0

LOWESS (Locally Weighted Scatterplot Smoothing)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Layer 2: Math
//!
//! This layer provides pure mathematical functions used throughout LOWESS:
//! - Kernel functions for distance-based weighting
//! - Robust statistics (MAD/MAR)

// Kernel (weight) functions for distance-based weighting.
pub mod kernel;

// Robust scale estimation (MAR/MAD).
pub mod scaling;

// Boundary padding utilities.
pub mod boundary;