When to use it
Use for lifetime data modeling and reliability engineering.
Required Inputs
- Failure / Lifetime data points
- Censoring indicator array
- Estimation method (MLE / Least Squares Rank)
Estimate Weibull shape parameter β (slope), scale parameter η (characteristic life), Mean Time To Failure (MTTF), and hazard rate functions.
Run this test live in StatLab npm i @statlab/coreUse for lifetime data modeling and reliability engineering.
R(t) = exp[ -(t/η)^β ], h(t) = (β/η)(t/η)^(β-1)
from scipy import stats
shape, loc, scale = stats.weibull_min.fit(durations, floc=0)
print(f"beta={shape:.2f}, eta={scale:.2f}")
library(flexsurv)
flexsurvreg(Surv(time, status) ~ 1, dist = "weibull")
import { weibullFit } from '@statlab/core';
const fit = weibullFit(durations);
Continuous A/B testing, statistical telemetry analysis, and automated feedback loops for live backend services.
Explore VoxelPulse →Fixed-price AI release-readiness sprints, automated regression testing, and reliability statistical benchmarks.
Explore VoxelAssurance →Explore static calculators across the StatLab inference engine suite.