linreg-core 0.8.1

Lightweight regression library (OLS, Ridge, Lasso, Elastic Net, WLS, LOESS, Polynomial) with 14 diagnostic tests, cross validation, and prediction intervals. Pure Rust - no external math dependencies. WASM, Python, FFI, and Excel XLL bindings.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Ridge regression validation tests
//!
//! This module contains comprehensive validation tests for ridge regression.

mod ridge_modules;

#[test]
fn run_all_ridge_tests() {
    // This module is organized into submodules:
    // - baseline: Basic smoke tests and baseline values
    // - verification: Manual calculation verification
    // - glmnet_audit: Comparison with R's glmnet
    println!("Ridge regression tests are in ridge_modules/ subdirectory");
    println!("Run with: cargo test --test ridge");
}