pub struct Difference {
pub effect: f64,
pub effect_size: f64,
pub critical_value: f64,
pub p_value: f64,
pub alpha: f64,
pub beta: f64,
}
Expand description
The statistical difference between two Summary instances.
Fields§
§effect: f64
The absolute difference between the samples’ means.
effect_size: f64
The difference in means between the two samples, normalized for variance. Technically, this is Cohen’s d.
critical_value: f64
The minimum allowed effect at the given confidence level.
p_value: f64
The p-value for the test: the probability that accepting the results of this test will be a Type 1 error, in which the null hypothesis (i.e. there is no difference between the means of the two samples) will be rejected when it is in fact true.
alpha: f64
The significance level of the test. It is the maximum allowed value of the p-value.
beta: f64
The probability of a Type 2 error: the probability that the null hypothesis will be retained despite it not being true.
Implementations§
Source§impl Difference
impl Difference
Sourcepub fn is_significant(&self) -> bool
pub fn is_significant(&self) -> bool
Whether or not the difference is statistically significant.
Trait Implementations§
Source§impl Clone for Difference
impl Clone for Difference
Source§fn clone(&self) -> Difference
fn clone(&self) -> Difference
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for Difference
impl Debug for Difference
impl Copy for Difference
Auto Trait Implementations§
impl Freeze for Difference
impl RefUnwindSafe for Difference
impl Send for Difference
impl Sync for Difference
impl Unpin for Difference
impl UnwindSafe for Difference
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.