Struct statrs::distribution::Beta [−][src]
pub struct Beta { /* fields omitted */ }
Implements the Beta distribution
Examples
use statrs::distribution::{Beta, Continuous}; use statrs::statistics::Mean; use statrs::prec; let n = Beta::new(2.0, 2.0).unwrap(); assert_eq!(n.mean(), 0.5); assert!(prec::almost_eq(n.pdf(0.5), 1.5, 1e-14));
Implementations
impl Beta
[src]
impl Beta
[src]pub fn new(shape_a: f64, shape_b: f64) -> Result<Beta>
[src]
Constructs a new beta distribution with shapeA (α) of shape_a
and shapeB (β) of shape_b
Errors
Returns an error if shape_a
or shape_b
are NaN
.
Also returns an error if shape_a <= 0.0
or shape_b <= 0.0
Examples
use statrs::distribution::Beta; let mut result = Beta::new(2.0, 2.0); assert!(result.is_ok()); result = Beta::new(0.0, 0.0); assert!(result.is_err());
pub fn shape_a(&self) -> f64
[src]
Returns the shapeA (α) of the beta distribution
Examples
use statrs::distribution::Beta; let n = Beta::new(2.0, 2.0).unwrap(); assert_eq!(n.shape_a(), 2.0);
pub fn shape_b(&self) -> f64
[src]
Returns the shapeB (β) of the beta distributionβ
Examples
use statrs::distribution::Beta; let n = Beta::new(2.0, 2.0).unwrap(); assert_eq!(n.shape_b(), 2.0);
Trait Implementations
impl CheckedMode<f64> for Beta
[src]
impl CheckedMode<f64> for Beta
[src]fn checked_mode(&self) -> Result<f64>
[src]
impl Continuous<f64, f64> for Beta
[src]
impl Continuous<f64, f64> for Beta
[src]fn pdf(&self, x: f64) -> f64
[src]
Calculates the probability density function for the beta distribution
at x
.
Formula
ⓘ
let B(α, β) = Γ(α)Γ(β)/Γ(α + β) x^(α - 1) * (1 - x)^(β - 1) / B(α, β)
where α
is shapeA, β
is shapeB, and Γ
is the gamma function
fn ln_pdf(&self, x: f64) -> f64
[src]
Calculates the log probability density function for the beta
distribution at x
.
Formula
ⓘ
let B(α, β) = Γ(α)Γ(β)/Γ(α + β) ln(x^(α - 1) * (1 - x)^(β - 1) / B(α, β))
where α
is shapeA, β
is shapeB, and Γ
is the gamma function
impl Distribution<f64> for Beta
[src]
impl Distribution<f64> for Beta
[src]impl Univariate<f64, f64> for Beta
[src]
impl Univariate<f64, f64> for Beta
[src]impl Variance<f64> for Beta
[src]
impl Variance<f64> for Beta
[src]