loess-rs 0.2.2

LOESS (Locally Estimated Scatterplot Smoothing) implementation in Rust
Documentation
//! Layer 6: Adapters
//!
//! # Purpose
//!
//! This layer provides user-facing APIs that adapt the engine layer for different
//! execution modes and use cases:
//!
//! - **Batch**: Unified adapter for sequential execution
//! - **Streaming**: Chunked processing for large datasets
//! - **Online**: Incremental updates for real-time data
//!
//! # Architecture
//!
//! ```text
//! Layer 7: API
//!//! Layer 6: Adapters ← You are here
//!//! Layer 5: Engine
//!//! Layer 4: Evaluation
//!//! Layer 3: Algorithms
//!//! Layer 2: Math
//!//! Layer 1: Primitives
//! ```

/// Unified batch adapter for LOESS smoothing.
pub mod batch;

/// Streaming LOESS for large datasets.
pub mod streaming;

/// Online LOESS for real-time data streams.
pub mod online;