pub enum MultiTestMethod {
Bonferroni,
FdrBh,
Holm,
}Expand description
Correction method for multipletests.
Variants§
Bonferroni
Bonferroni one-step correction.
FdrBh
Benjamini–Hochberg FDR step-up procedure (independent / positive corr.).
Holm
Holm step-down (Bonferroni) procedure.
Trait Implementations§
Source§impl Clone for MultiTestMethod
impl Clone for MultiTestMethod
Source§fn clone(&self) -> MultiTestMethod
fn clone(&self) -> MultiTestMethod
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 MultiTestMethod
Source§impl Debug for MultiTestMethod
impl Debug for MultiTestMethod
impl Eq for MultiTestMethod
Source§impl PartialEq for MultiTestMethod
impl PartialEq for MultiTestMethod
impl StructuralPartialEq for MultiTestMethod
Auto Trait Implementations§
impl Freeze for MultiTestMethod
impl RefUnwindSafe for MultiTestMethod
impl Send for MultiTestMethod
impl Sync for MultiTestMethod
impl Unpin for MultiTestMethod
impl UnsafeUnpin for MultiTestMethod
impl UnwindSafe for MultiTestMethod
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