pub struct TestResult<S: Scalar> {
pub statistic: S,
pub p_value: S,
pub reject: bool,
}Expand description
Result of a hypothesis test.
Fields§
§statistic: STest statistic.
p_value: Sp-value.
reject: boolWhether to reject H0 at the given significance level.
Trait Implementations§
Auto Trait Implementations§
impl<S> Freeze for TestResult<S>where
S: Freeze,
impl<S> RefUnwindSafe for TestResult<S>where
S: RefUnwindSafe,
impl<S> Send for TestResult<S>
impl<S> Sync for TestResult<S>
impl<S> Unpin for TestResult<S>where
S: Unpin,
impl<S> UnsafeUnpin for TestResult<S>where
S: UnsafeUnpin,
impl<S> UnwindSafe for TestResult<S>where
S: UnwindSafe,
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