pub struct LeveneResult {
pub w_statistic: f64,
pub p_value: f64,
pub df_between: usize,
pub df_within: usize,
pub group_variances: Vec<f64>,
pub is_homogeneous: bool,
pub is_valid: bool,
}Fields§
§w_statistic: f64§p_value: f64§df_between: usize§df_within: usize§group_variances: Vec<f64>§is_homogeneous: bool§is_valid: boolTrait Implementations§
Source§impl Clone for LeveneResult
impl Clone for LeveneResult
Source§fn clone(&self) -> LeveneResult
fn clone(&self) -> LeveneResult
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 LeveneResult
impl Debug for LeveneResult
Auto Trait Implementations§
impl Freeze for LeveneResult
impl RefUnwindSafe for LeveneResult
impl Send for LeveneResult
impl Sync for LeveneResult
impl Unpin for LeveneResult
impl UnsafeUnpin for LeveneResult
impl UnwindSafe for LeveneResult
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