pub struct TTest {
pub t_statistic: f64,
pub p_value: f64,
pub degrees_of_freedom: u32,
pub confidence_interval: (f64, f64),
}Expand description
One-sample / paired t-test result (integer degrees of freedom). Copy.
Fields§
§t_statistic: f64§p_value: f64Two-sided p-value from the exact Student-t CDF.
degrees_of_freedom: u32§confidence_interval: (f64, f64)(lower, upper) of the 95% confidence interval around the sample mean, using the t critical value for these degrees of freedom (not a fixed 1.96).
Trait Implementations§
impl Copy for TTest
impl StructuralPartialEq for TTest
Auto Trait Implementations§
impl Freeze for TTest
impl RefUnwindSafe for TTest
impl Send for TTest
impl Sync for TTest
impl Unpin for TTest
impl UnsafeUnpin for TTest
impl UnwindSafe for TTest
Blanket Implementations§
§impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
impl<S, A> Aggregate<Result<S, Error>> for Awhere
A: Aggregate<S>,
Aggregate shares in an MPC protocol.
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,
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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