pub struct AnovaResult {
pub f_statistic: f64,
pub df_between: usize,
pub df_within: usize,
pub p_value: f64,
pub ss_between: f64,
pub ss_within: f64,
pub ms_between: f64,
pub ms_within: f64,
pub group_means: Vec<f64>,
pub grand_mean: f64,
}Expand description
Result of one-way ANOVA.
Fields§
§f_statistic: f64F-statistic.
df_between: usizeDegrees of freedom between groups.
df_within: usizeDegrees of freedom within groups.
p_value: f64p-value.
ss_between: f64Sum of squares between groups.
ss_within: f64Sum of squares within groups.
ms_between: f64Mean square between.
ms_within: f64Mean square within.
group_means: Vec<f64>Group means.
grand_mean: f64Grand mean.
Trait Implementations§
Source§impl Clone for AnovaResult
impl Clone for AnovaResult
Source§fn clone(&self) -> AnovaResult
fn clone(&self) -> AnovaResult
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 AnovaResult
impl RefUnwindSafe for AnovaResult
impl Send for AnovaResult
impl Sync for AnovaResult
impl Unpin for AnovaResult
impl UnsafeUnpin for AnovaResult
impl UnwindSafe for AnovaResult
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