Skip to main content

ChiSquared

Struct ChiSquared 

Source
pub struct ChiSquared { /* private fields */ }
Expand description

Implements the Chi-squared distribution which is a special case of the Gamma distribution (referenced Here)

§Examples

use statrs::distribution::{ChiSquared, Continuous};
use statrs::statistics::Distribution;
use approx::assert_abs_diff_eq;

let n = ChiSquared::new(3.0).unwrap();
assert_eq!(n.mean().unwrap(), 3.0);
assert_abs_diff_eq!(n.pdf(4.0), 0.107981933026376103901, epsilon = 1e-15);

Implementations§

Source§

impl ChiSquared

Source

pub fn new(freedom: f64) -> Result<ChiSquared, GammaError>

Constructs a new chi-squared distribution with freedom degrees of freedom. This is equivalent to a Gamma distribution with a shape of freedom / 2.0 and a rate of 0.5.

§Errors

Returns an error if freedom is NaN or less than or equal to 0.0

§Examples
use statrs::distribution::ChiSquared;

let mut result = ChiSquared::new(3.0);
assert!(result.is_ok());

result = ChiSquared::new(0.0);
assert!(result.is_err());
Source

pub fn freedom(&self) -> f64

Returns the degrees of freedom of the chi-squared distribution

§Examples
use statrs::distribution::ChiSquared;

let n = ChiSquared::new(3.0).unwrap();
assert_eq!(n.freedom(), 3.0);
Source

pub fn shape(&self) -> f64

Returns the shape of the underlying Gamma distribution

§Examples
use statrs::distribution::ChiSquared;

let n = ChiSquared::new(3.0).unwrap();
assert_eq!(n.shape(), 3.0 / 2.0);
Source

pub fn rate(&self) -> f64

Returns the rate of the underlying Gamma distribution

§Examples
use statrs::distribution::ChiSquared;

let n = ChiSquared::new(3.0).unwrap();
assert_eq!(n.rate(), 0.5);

Trait Implementations§

Source§

impl Clone for ChiSquared

Source§

fn clone(&self) -> ChiSquared

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Continuous<f64, f64> for ChiSquared

Source§

fn pdf(&self, x: f64) -> f64

Calculates the probability density function for the chi-squared distribution at x

At x = 0, returns positive infinity for freedom < 2, 0.5 for freedom = 2, and 0 for freedom > 2.

§Formula
1 / (2^(k / 2) * Γ(k / 2)) * x^((k / 2) - 1) * e^(-x / 2)

where k is the degrees of freedom and Γ is the gamma function

Source§

fn ln_pdf(&self, x: f64) -> f64

Calculates the log probability density function for the chi-squared distribution at x

At x = 0, returns positive infinity for freedom < 2, ln(0.5) for freedom = 2, and negative infinity for freedom > 2.

§Formula
ln(1 / (2^(k / 2) * Γ(k / 2)) * x^((k / 2) - 1) * e^(-x / 2))
Source§

impl ContinuousCDF<f64, f64> for ChiSquared

Source§

fn cdf(&self, x: f64) -> f64

Calculates the cumulative distribution function for the chi-squared distribution at x

§Formula
(1 / Γ(k / 2)) * γ(k / 2, x / 2)

where k is the degrees of freedom, Γ is the gamma function, and γ is the lower incomplete gamma function

Source§

fn sf(&self, x: f64) -> f64

Calculates the cumulative distribution function for the chi-squared distribution at x

§Formula
(1 / Γ(k / 2)) * γ(k / 2, x / 2)

where k is the degrees of freedom, Γ is the gamma function, and γ is the upper incomplete gamma function

Source§

fn inverse_cdf(&self, p: f64) -> f64

Calculates the inverse cumulative distribution function for the chi-squared distribution at x

§Formula
γ^{-1}(k / 2, x * Γ(k / 2) / 2)

where k is the degrees of freedom, Γ is the gamma function, and γ is the lower incomplete gamma function

Source§

fn try_inverse_cdf(&self, p: T) -> Result<K, InverseCdfError>

Due to issues with rounding and floating-point accuracy the default implementation may be ill-behaved. Specialized inverse cdfs should be used whenever possible. Performs a binary search on the domain of cdf to obtain an approximation of F^-1(p) := inf { x | F(x) >= p }. Needless to say, performance may may be lacking.
Source§

impl Copy for ChiSquared

Source§

impl Debug for ChiSquared

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for ChiSquared

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Distribution<f64> for ChiSquared

Available on crate feature rand only.
Source§

fn sample<R: Rng + ?Sized>(&self, r: &mut R) -> f64

Generate a random value of T, using rng as the source of randomness.
Source§

fn sample_iter<R>(self, rng: R) -> Iter<Self, R, T>
where R: Rng, Self: Sized,

Create an iterator that generates random values of T, using rng as the source of randomness. Read more
Source§

fn map<F, S>(self, func: F) -> Map<Self, F, T, S>
where F: Fn(T) -> S, Self: Sized,

Map sampled values to type S Read more
Source§

impl Distribution<f64> for ChiSquared

Source§

fn mean(&self) -> Option<f64>

Returns the mean of the chi-squared distribution

§Formula
k

where k is the degrees of freedom

Source§

fn variance(&self) -> Option<f64>

Returns the variance of the chi-squared distribution

§Formula
2k

where k is the degrees of freedom

Source§

fn entropy(&self) -> Option<f64>

Returns the entropy of the chi-squared distribution

§Formula
(k / 2) + ln(2 * Γ(k / 2)) + (1 - (k / 2)) * ψ(k / 2)

where k is the degrees of freedom, Γ is the gamma function, and ψ is the digamma function

Source§

fn skewness(&self) -> Option<f64>

Returns the skewness of the chi-squared distribution

§Formula
sqrt(8 / k)

where k is the degrees of freedom

Source§

fn std_dev(&self) -> Option<T>

Returns the standard deviation, if it exists. Read more
Source§

impl Max<f64> for ChiSquared

Source§

fn max(&self) -> f64

Returns the maximum value in the domain of the chi-squared distribution representable by a double precision float

§Formula
f64::INFINITY
Source§

impl Median<f64> for ChiSquared

Source§

fn median(&self) -> f64

Returns the median of the chi-squared distribution

§Formula
k * (1 - (2 / 9k))^3
Source§

impl Min<f64> for ChiSquared

Source§

fn min(&self) -> f64

Returns the minimum value in the domain of the chi-squared distribution representable by a double precision float

§Formula
0
Source§

impl Mode<Option<f64>> for ChiSquared

Source§

fn mode(&self) -> Option<f64>

Returns the mode of the chi-squared distribution, or None if freedom is less than 2.

§Formula
k - 2, where k >= 2

where k is the degrees of freedom

Source§

impl PartialEq for ChiSquared

Source§

fn eq(&self, other: &ChiSquared) -> bool

Equality operator ==. Read more
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Inequality operator !=. Read more
Source§

impl StructuralPartialEq for ChiSquared

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.