pub struct LaneyUChart {
pub u_bar: f64,
pub phi: f64,
pub points: Vec<LaneyAttributePoint>,
}Expand description
Laney U’ chart result.
Contains the overall defect rate, the overdispersion factor φ, and the per-subgroup chart points with adjusted limits.
Fields§
§u_bar: f64Overall defect rate (ū = Σdefectsᵢ / Σunitsᵢ).
phi: f64Overdispersion/underdispersion correction factor φ = MR̄ / d₂. φ = 1.0 means no correction needed (ordinary U chart).
points: Vec<LaneyAttributePoint>Per-subgroup chart points.
Trait Implementations§
Source§impl Clone for LaneyUChart
impl Clone for LaneyUChart
Source§fn clone(&self) -> LaneyUChart
fn clone(&self) -> LaneyUChart
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for LaneyUChart
impl RefUnwindSafe for LaneyUChart
impl Send for LaneyUChart
impl Sync for LaneyUChart
impl Unpin for LaneyUChart
impl UnsafeUnpin for LaneyUChart
impl UnwindSafe for LaneyUChart
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