pub struct AnovaResult {
pub f_statistic: f64,
pub p_value: f64,
pub df_between: usize,
pub df_within: usize,
pub group_means: Vec<f64>,
pub grand_mean: f64,
pub is_significant: bool,
pub is_valid: bool,
}Fields§
§f_statistic: f64§p_value: f64§df_between: usize§df_within: usize§group_means: Vec<f64>§grand_mean: f64§is_significant: bool§is_valid: boolTrait 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 moreSource§impl Debug for AnovaResult
impl Debug for AnovaResult
Auto 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