loess-rs 0.9.0

LOESS (Locally Estimated Scatterplot Smoothing)
Documentation
//! Layer 6: Adapters
//!
//! 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

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

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

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

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