pub struct AttributeChartPoint {
pub index: usize,
pub value: f64,
pub ucl: f64,
pub cl: f64,
pub lcl: f64,
pub out_of_control: bool,
}Expand description
A single data point on an attributes control chart.
Contains the computed statistic, its control limits (which may vary per point for charts with variable sample sizes), and an out-of-control flag.
Fields§
§index: usizeThe zero-based index of this point.
value: f64The computed statistic value (proportion, count, or rate).
ucl: f64Upper control limit for this point.
cl: f64Center line for this point.
lcl: f64Lower control limit for this point.
out_of_control: boolWhether this point is out of control (beyond UCL or below LCL).
Trait Implementations§
Source§impl Clone for AttributeChartPoint
impl Clone for AttributeChartPoint
Source§fn clone(&self) -> AttributeChartPoint
fn clone(&self) -> AttributeChartPoint
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 AttributeChartPoint
impl RefUnwindSafe for AttributeChartPoint
impl Send for AttributeChartPoint
impl Sync for AttributeChartPoint
impl Unpin for AttributeChartPoint
impl UnsafeUnpin for AttributeChartPoint
impl UnwindSafe for AttributeChartPoint
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