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
18
//! Layer 4: Evaluation
//!
//! This layer calculates high-level statistical metrics based on the smoothing results:
//! - Cross-validation for parameter selection
//! - Diagnostic metrics for fit quality
//! - Confidence and prediction intervals

// Default configuration values for the evaluation layer.
pub mod defaults;

// Cross-validation for bandwidth selection.
pub mod cv;

// Diagnostic metrics for fit quality assessment.
pub mod diagnostics;

// Confidence and prediction interval computation.
pub mod intervals;