pub struct LaneyPChart {
pub p_bar: f64,
pub phi: f64,
pub points: Vec<LaneyAttributePoint>,
}Expand description
Laney P’ chart result.
Contains the overall proportion defective, the overdispersion factor φ, and the per-subgroup chart points with adjusted limits.
Fields§
§p_bar: f64Overall proportion defective (p̄ = Σdᵢ / Σnᵢ).
phi: f64Overdispersion/underdispersion correction factor φ = MR̄ / d₂. φ = 1.0 means no correction needed (ordinary P chart).
points: Vec<LaneyAttributePoint>Per-subgroup chart points.
Trait Implementations§
Source§impl Clone for LaneyPChart
impl Clone for LaneyPChart
Source§fn clone(&self) -> LaneyPChart
fn clone(&self) -> LaneyPChart
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 LaneyPChart
impl RefUnwindSafe for LaneyPChart
impl Send for LaneyPChart
impl Sync for LaneyPChart
impl Unpin for LaneyPChart
impl UnsafeUnpin for LaneyPChart
impl UnwindSafe for LaneyPChart
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