Struct statrs::distribution::Chi [−][src]
pub struct Chi { /* fields omitted */ }
Implements the Chi distribution
Examples
use statrs::distribution::{Chi, Continuous}; use statrs::statistics::Mean; use statrs::prec; let n = Chi::new(2.0).unwrap(); assert!(prec::almost_eq(n.mean(), 1.25331413731550025121, 1e-14)); assert!(prec::almost_eq(n.pdf(1.0), 0.60653065971263342360, 1e-15));
Implementations
impl Chi
[src]
impl Chi
[src]pub fn new(freedom: f64) -> Result<Chi>
[src]
Constructs a new chi distribution
with freedom
degrees of freedom
Errors
Returns an error if freedom
is NaN
or
less than or equal to 0.0
Examples
use statrs::distribution::Chi; let mut result = Chi::new(2.0); assert!(result.is_ok()); result = Chi::new(0.0); assert!(result.is_err());
pub fn freedom(&self) -> f64
[src]
Returns the degrees of freedom of the chi distribution.
Examples
use statrs::distribution::Chi; let n = Chi::new(2.0).unwrap(); assert_eq!(n.freedom(), 2.0);
Trait Implementations
impl CheckedMode<f64> for Chi
[src]
impl CheckedMode<f64> for Chi
[src]impl Continuous<f64, f64> for Chi
[src]
impl Continuous<f64, f64> for Chi
[src]fn pdf(&self, x: f64) -> f64
[src]
Calculates the probability density function for the chi
distribution at x
Formula
ⓘ
(2^(1 - (k / 2)) * x^(k - 1) * e^(-x^2 / 2)) / Γ(k / 2)
where k
is the degrees of freedom and Γ
is the gamma function
fn ln_pdf(&self, x: f64) -> f64
[src]
Calculates the log probability density function for the chi distribution
at x
Formula
ⓘ
ln((2^(1 - (k / 2)) * x^(k - 1) * e^(-x^2 / 2)) / Γ(k / 2))
impl Distribution<f64> for Chi
[src]
impl Distribution<f64> for Chi
[src]impl Univariate<f64, f64> for Chi
[src]
impl Univariate<f64, f64> for Chi
[src]impl Variance<f64> for Chi
[src]
impl Variance<f64> for Chi
[src]