loess-rs 0.9.0

LOESS (Locally Estimated Scatterplot Smoothing)
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! 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 LOESS smoothing.
pub mod executor;

// Default values for engine configuration.
pub mod defaults;

// Validation utilities.
pub mod validator;

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