u-analytics 0.3.0

Statistical process control, process capability, Weibull reliability, change-point detection, measurement system analysis (Gage R&R), correlation, regression, distribution analysis, and hypothesis testing.
Documentation
//! # u-analytics
//!
//! Statistical process control (SPC), process capability analysis, Weibull
//! reliability, and change-point detection.
//!
//! This crate provides industrial quality analysis tools that are
//! domain-agnostic — they operate on raw `f64` data without knowledge
//! of manufacturing, scheduling, or any specific consumer domain.
//!
//! ## Modules
//!
//! - [`spc`] — Control charts (X̄-R, X̄-S, I-MR, P, NP, C, U) with run rules
//! - [`capability`] — Process capability indices (Cp, Cpk, Pp, Ppk, Cpm)
//! - [`weibull`] — Weibull parameter estimation (MLE, MRR) and reliability analysis
//! - [`detection`] — Change-point detection (CUSUM, EWMA, PELT)
//! - [`smoothing`] — Time series smoothing (SES, Holt, Holt-Winters)
//! - [`correlation`] — Correlation analysis (Pearson, Spearman, Kendall, matrices)
//! - [`regression`] — Regression analysis (simple, multiple OLS, VIF)
//! - [`distribution`] — Distribution analysis (ECDF, histogram bins, QQ-plot, KS test)
//! - [`testing`] — Hypothesis testing (t-tests, ANOVA, chi-squared, normality)
//! - [`msa`] — Measurement System Analysis (Gage R&R, ANOVA method)
//!
//! ## Design Philosophy
//!
//! - **Domain-agnostic**: No manufacturing or process-specific types
//! - **Numerical stability**: Leverages `u-numflow` for stable statistics
//! - **Research-backed**: All algorithms reference academic literature

pub mod capability;
pub mod correlation;
pub mod detection;
pub mod distribution;
pub mod msa;
pub mod regression;
pub mod smoothing;
pub mod spc;
pub mod testing;
pub mod weibull;

#[cfg(feature = "wasm")]
pub mod wasm;