pub enum NHSTResult {
Rejected {
p_value: f64,
effect_size: f64,
test_statistic: f64,
},
NotRejected {
p_value: f64,
power: f64,
},
}Expand description
Result of null hypothesis significance testing.
Variants§
Rejected
H₀ rejected: evidence supports falsification.
Fields
NotRejected
Failed to reject H₀: model corroborated (not proven).
Implementations§
Source§impl NHSTResult
impl NHSTResult
Trait Implementations§
Source§impl Clone for NHSTResult
impl Clone for NHSTResult
Source§fn clone(&self) -> NHSTResult
fn clone(&self) -> NHSTResult
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 NHSTResult
impl Debug for NHSTResult
Source§impl<'de> Deserialize<'de> for NHSTResult
impl<'de> Deserialize<'de> for NHSTResult
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for NHSTResult
impl RefUnwindSafe for NHSTResult
impl Send for NHSTResult
impl Sync for NHSTResult
impl Unpin for NHSTResult
impl UnsafeUnpin for NHSTResult
impl UnwindSafe for NHSTResult
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