pub struct MultiTestResult {
pub reject: Vec<bool>,
pub pvals_corrected: Vec<f64>,
}Expand description
Result of multipletests: rejection flags and adjusted p-values, both in
the original input order.
Fields§
§reject: Vec<bool>true where the corresponding null hypothesis is rejected at alpha.
pvals_corrected: Vec<f64>Corrected (adjusted) p-values, clamped to [0, 1].
Trait Implementations§
Source§impl Clone for MultiTestResult
impl Clone for MultiTestResult
Source§fn clone(&self) -> MultiTestResult
fn clone(&self) -> MultiTestResult
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 moreAuto Trait Implementations§
impl Freeze for MultiTestResult
impl RefUnwindSafe for MultiTestResult
impl Send for MultiTestResult
impl Sync for MultiTestResult
impl Unpin for MultiTestResult
impl UnsafeUnpin for MultiTestResult
impl UnwindSafe for MultiTestResult
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