pub struct StatisticalTestResult {
pub statistic: f64,
pub p_value: f64,
pub is_significant: bool,
pub test_name: String,
pub additional_info: HashMap<String, f64>,
}Expand description
Statistical significance test result
Fields§
§statistic: f64Test statistic value
p_value: f64P-value of the test
is_significant: boolWhether the result is statistically significant (p < 0.05)
test_name: StringTest name
additional_info: HashMap<String, f64>Additional information about the test
Implementations§
Trait Implementations§
Source§impl Clone for StatisticalTestResult
impl Clone for StatisticalTestResult
Source§fn clone(&self) -> StatisticalTestResult
fn clone(&self) -> StatisticalTestResult
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 moreAuto Trait Implementations§
impl Freeze for StatisticalTestResult
impl RefUnwindSafe for StatisticalTestResult
impl Send for StatisticalTestResult
impl Sync for StatisticalTestResult
impl Unpin for StatisticalTestResult
impl UnwindSafe for StatisticalTestResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more