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 5: Engine
//!
//! This layer orchestrates the smoothing process by coordinating between
//! primitives (traits, utilities) and algorithms (kernels, regression, robustness).
//! It provides the main iteration loops and convergence detection.

// Unified execution engine for LOWESS smoothing.
pub mod executor;

// Validation utilities.
pub mod validator;

// Output types for LOWESS operations.
pub mod output;