pub struct GChart {
pub g_bar: f64,
pub points: Vec<GChartPoint>,
}Expand description
G chart (geometric distribution) result for rare-event monitoring.
Monitors the number of conforming units between consecutive defect events. Appropriate when the defect rate is very low (< 1%) and standard P/NP charts produce degenerate limits.
§References
- Kaminsky, F.C. et al. (1992). “Statistical control charts based on a geometric distribution”, Journal of Quality Technology 24(2), pp. 63-69.
- Benneyan, J.C. (2001). “Number-Between g-Type Statistical Quality Control Charts for Healthcare Applications”, Health Care Management Science 4(4), pp. 305-318.
- Woodall, W.H. (2006). “The Use of Control Charts in Health-Care and Public-Health Surveillance”, Journal of Quality Technology 38(2), pp. 89-104.
Fields§
§g_bar: f64Mean inter-event conforming count (ḡ).
points: Vec<GChartPoint>Per-observation chart points.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for GChart
impl RefUnwindSafe for GChart
impl Send for GChart
impl Sync for GChart
impl Unpin for GChart
impl UnsafeUnpin for GChart
impl UnwindSafe for GChart
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