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
// ============================================================================
// WASM Tests Module
// ============================================================================
//
// Browser-based WASM tests using wasm-bindgen-test framework.
// Tests cover OLS regression, diagnostic tests, error handling, CSV parsing,
// regularized regression, and domain checking.
//
// Run with: wasm-pack test --chrome --headless

#![cfg(target_arch = "wasm32")]

pub mod feature_importance_tests;
pub mod fixtures;
pub mod integration_tests;
pub mod diagnostic_tests;
pub mod kfold_tests;
pub mod loess_tests;
pub mod ols_tests;
pub mod polynomial_tests;
pub mod prediction_intervals_tests;
pub mod regularized_tests;
pub mod serialization_tests;
pub mod utility_tests;
pub mod wls_tests;

// Re-export all tests at the module level
pub use feature_importance_tests::*;
pub use fixtures::*;
pub use integration_tests::*;
pub use diagnostic_tests::*;
pub use kfold_tests::*;
pub use loess_tests::*;
pub use ols_tests::*;
pub use polynomial_tests::*;
pub use prediction_intervals_tests::*;
pub use regularized_tests::*;
pub use serialization_tests::*;
pub use utility_tests::*;
pub use wls_tests::*;