u_analytics/weibull/mod.rs
1//! Weibull parameter estimation and reliability analysis.
2//!
3//! Provides maximum likelihood estimation (MLE) and median rank regression
4//! (MRR) for fitting Weibull distributions to failure data.
5//!
6//! # Modules
7//!
8//! - [`weibull_mle`] — Newton-Raphson MLE for shape and scale parameters
9//! - [`weibull_mrr`] — Median Rank Regression via Bernard's approximation
10//! - [`ReliabilityAnalysis`] — R(t), hazard rate, MTBF, B-life from fitted parameters
11//!
12//! # References
13//!
14//! - Abernethy, R.B. (2006). *The New Weibull Handbook*, 5th ed.
15//! - Dodson, B. (2006). *The Weibull Analysis Handbook*, 2nd ed.
16
17mod mle;
18mod mrr;
19mod reliability;
20
21pub use mle::{weibull_mle, WeibullMleResult};
22pub use mrr::{weibull_mrr, WeibullMrrResult};
23pub use reliability::ReliabilityAnalysis;