u-analytics 0.4.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
//! Statistical Process Control (SPC) charts.
//!
//! Provides control chart implementations for both variables and attributes data.
//!
//! # Variables Charts
//!
//! - [`XBarRChart`] — X-bar and Range chart for subgroup data (n=2..10)
//! - [`XBarSChart`] — X-bar and Standard Deviation chart for subgroup data (n=2..10)
//! - [`IndividualMRChart`] — Individual and Moving Range chart for individual observations
//!
//! # Attributes Charts
//!
//! - [`PChart`] — Proportion nonconforming (variable sample size)
//! - [`NPChart`] — Count of nonconforming items (constant sample size)
//! - [`CChart`] — Count of defects per unit (constant area of opportunity)
//! - [`UChart`] — Defects per unit (variable area of opportunity)
//!
//! # Run Rules
//!
//! - [`WesternElectricRules`] — 4 classic run rules
//! - [`NelsonRules`] — 8 rules (superset of Western Electric)
//!
//! # References
//!
//! - Montgomery, D.C. (2019). *Introduction to Statistical Quality Control*, 8th ed.
//! - ASTM E2587 — Standard Practice for Use of Control Charts
//! - Nelson, L.S. (1984). "The Shewhart Control Chart — Tests for Special Causes",
//!   *Journal of Quality Technology* 16(4), pp. 237-239.

mod attributes;
mod chart;
mod rules;
mod variables;

pub use attributes::{
    g_chart, laney_p_chart, laney_u_chart, t_chart, CChart, GChart, GChartPoint,
    LaneyAttributePoint, LaneyPChart, LaneyUChart, NPChart, PChart, TChart, TChartPoint, UChart,
};
pub use chart::{ChartPoint, ControlChart, ControlLimits, Violation, ViolationType};
pub use rules::{NelsonRules, RunRule, WesternElectricRules};
pub use variables::{IndividualMRChart, XBarRChart, XBarSChart};