pub enum LeveneCenter {
Mean,
Median,
}Expand description
Centering strategy for Levene’s test.
Variants§
Mean
Deviations from the group mean (classical Levene).
Median
Deviations from the group median (Brown-Forsythe).
Trait Implementations§
Source§impl Clone for LeveneCenter
impl Clone for LeveneCenter
Source§fn clone(&self) -> LeveneCenter
fn clone(&self) -> LeveneCenter
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for LeveneCenter
Source§impl Debug for LeveneCenter
impl Debug for LeveneCenter
Source§impl PartialEq for LeveneCenter
impl PartialEq for LeveneCenter
impl StructuralPartialEq for LeveneCenter
Auto Trait Implementations§
impl Freeze for LeveneCenter
impl RefUnwindSafe for LeveneCenter
impl Send for LeveneCenter
impl Sync for LeveneCenter
impl Unpin for LeveneCenter
impl UnsafeUnpin for LeveneCenter
impl UnwindSafe for LeveneCenter
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