pub struct AnovaRow {
pub source: String,
pub df: f64,
pub ss: f64,
pub ms: f64,
pub f_value: Option<f64>,
pub p_value: Option<f64>,
}Expand description
A single row in the ANOVA table.
Fields§
§source: StringSource of variation: “Part”, “Operator”, “Part×Operator”, “Repeatability”, “Total”.
df: f64Degrees of freedom.
ss: f64Sum of squares.
ms: f64Mean square (SS / DF).
f_value: Option<f64>F statistic (None for Error/Total rows).
p_value: Option<f64>p-value from F distribution (None for Error/Total rows).
Trait Implementations§
Auto Trait Implementations§
impl Freeze for AnovaRow
impl RefUnwindSafe for AnovaRow
impl Send for AnovaRow
impl Sync for AnovaRow
impl Unpin for AnovaRow
impl UnsafeUnpin for AnovaRow
impl UnwindSafe for AnovaRow
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