pub struct AnovaRow {
pub name: String,
pub df: f64,
pub sum_sq: f64,
pub mean_sq: f64,
pub f: Option<f64>,
pub pr: Option<f64>,
}Expand description
One row of an ANOVA table.
Fields§
§name: StringRow label (a term name, or "Residual").
df: f64Degrees of freedom.
sum_sq: f64Sum of squares.
mean_sq: f64Mean square sum_sq / df.
f: Option<f64>F statistic (None for the residual row).
pr: Option<f64>p-value PR(>F) (None for the residual row).
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