pub struct ChiSquaredDistribution {
pub degrees_of_freedom: i64,
pub distribution_name: String,
pub description: String,
}Expand description
Parameters of a chi-squared distribution.
The distribution of a sum of degrees_of_freedom squared standard normals;
the reference distribution for variance and goodness-of-fit tests.
Fields§
§degrees_of_freedom: i64Degrees of freedom k; 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 ChiSquaredDistribution
impl Cdf for ChiSquaredDistribution
Source§impl Clone for ChiSquaredDistribution
impl Clone for ChiSquaredDistribution
Source§fn clone(&self) -> ChiSquaredDistribution
fn clone(&self) -> ChiSquaredDistribution
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 ChiSquaredDistribution
impl Debug for ChiSquaredDistribution
Source§impl Default for ChiSquaredDistribution
impl Default for ChiSquaredDistribution
Source§fn default() -> ChiSquaredDistribution
fn default() -> ChiSquaredDistribution
Returns the “default value” for a type. Read more
Source§impl LogCdf for ChiSquaredDistribution
impl LogCdf for ChiSquaredDistribution
Source§impl Moments for ChiSquaredDistribution
impl Moments for ChiSquaredDistribution
Source§impl Pdf for ChiSquaredDistribution
impl Pdf for ChiSquaredDistribution
Source§impl Quantile for ChiSquaredDistribution
impl Quantile for ChiSquaredDistribution
Source§impl Sample for ChiSquaredDistribution
impl Sample for ChiSquaredDistribution
Auto Trait Implementations§
impl Freeze for ChiSquaredDistribution
impl RefUnwindSafe for ChiSquaredDistribution
impl Send for ChiSquaredDistribution
impl Sync for ChiSquaredDistribution
impl Unpin for ChiSquaredDistribution
impl UnsafeUnpin for ChiSquaredDistribution
impl UnwindSafe for ChiSquaredDistribution
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