pub struct FDistribution {
pub numerator_df: i64,
pub denominator_df: i64,
pub distribution_name: String,
pub description: String,
}Expand description
Parameters of an F distribution.
The ratio of two independent chi-squared variates each divided by their degrees of freedom; the reference distribution for ANOVA and variance-ratio tests.
Fields§
§numerator_df: i64Numerator degrees of freedom d₁; must be ≥ 1.
denominator_df: i64Denominator degrees of freedom d₂; must be ≥ 1.
distribution_name: StringOptional human-readable name; unused by the numerics, defaults to empty.
description: StringOptional human-readable description; unused by the numerics, defaults to empty.
Trait Implementations§
Source§impl Cdf for FDistribution
impl Cdf for FDistribution
Source§impl Clone for FDistribution
impl Clone for FDistribution
Source§fn clone(&self) -> FDistribution
fn clone(&self) -> FDistribution
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 moreSource§impl Debug for FDistribution
impl Debug for FDistribution
Source§impl Default for FDistribution
impl Default for FDistribution
Source§fn default() -> FDistribution
fn default() -> FDistribution
Returns the “default value” for a type. Read more
Source§impl LogCdf for FDistribution
impl LogCdf for FDistribution
Source§impl Moments for FDistribution
impl Moments for FDistribution
Source§impl Pdf for FDistribution
impl Pdf for FDistribution
Source§impl Quantile for FDistribution
impl Quantile for FDistribution
Source§impl Sample for FDistribution
impl Sample for FDistribution
Auto Trait Implementations§
impl Freeze for FDistribution
impl RefUnwindSafe for FDistribution
impl Send for FDistribution
impl Sync for FDistribution
impl Unpin for FDistribution
impl UnsafeUnpin for FDistribution
impl UnwindSafe for FDistribution
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