pub struct TChart {
pub t_bar: f64,
pub points: Vec<TChartPoint>,
}Expand description
T chart (exponential distribution) result for rare-event monitoring.
Monitors the time between consecutive defect events. Control limits are derived from the exponential distribution percentiles corresponding to ±3σ probability mass (α/2 = 0.00135).
§Reference
Borror, C.M., Keats, J.B. & Montgomery, D.C. (2003). “Robustness of the time between events CUSUM”, International Journal of Production Research 41(15), pp. 3435-3444.
Fields§
§t_bar: f64Mean inter-event time (t̄).
points: Vec<TChartPoint>Per-observation chart points.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for TChart
impl RefUnwindSafe for TChart
impl Send for TChart
impl Sync for TChart
impl Unpin for TChart
impl UnsafeUnpin for TChart
impl UnwindSafe for TChart
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more