loess-rs 0.9.0

LOESS (Locally Estimated Scatterplot Smoothing)
Documentation
//! Regression Module
//!
//! This module provides the core functionality for local regression fitting:
//! context, types, generic solvers, and specialized low-dimensional accumulators.
//!
//! ## srrstats Compliance
//!
//! @srrstats {RE2.0} Local polynomial fitting with distance-based kernel weighting.
//! @srrstats {G2.0} Input validation at regression boundaries; empty/zero-weight fallbacks.

// Regression Context
mod context;

// Generic Regression
mod generic;

// Specialized Regression
mod specialized;

// Regression Types
mod types;

// Re-exports
pub use context::RegressionContext;
pub use specialized::SolverLinalg;
pub use types::{PolynomialDegree, ZeroWeightFallback};