pub struct OnewayResult {
pub statistic: f64,
pub pvalue: f64,
pub df_num: f64,
pub df_denom: f64,
}Expand description
Result of a one-way ANOVA.
Fields§
§statistic: f64F-distributed test statistic.
pvalue: f64p-value of the test.
df_num: f64Numerator degrees of freedom.
df_denom: f64Denominator degrees of freedom.
Trait Implementations§
Source§impl Clone for OnewayResult
impl Clone for OnewayResult
Source§fn clone(&self) -> OnewayResult
fn clone(&self) -> OnewayResult
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreimpl Copy for OnewayResult
Auto Trait Implementations§
impl Freeze for OnewayResult
impl RefUnwindSafe for OnewayResult
impl Send for OnewayResult
impl Sync for OnewayResult
impl Unpin for OnewayResult
impl UnsafeUnpin for OnewayResult
impl UnwindSafe for OnewayResult
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