Struct statrs::distribution::Categorical [−][src]
pub struct Categorical { /* fields omitted */ }
Implements the Categorical distribution, also known as the generalized Bernoulli or discrete distribution
Examples
use statrs::distribution::{Categorical, Discrete}; use statrs::statistics::Mean; use statrs::prec; let n = Categorical::new(&[0.0, 1.0, 2.0]).unwrap(); assert!(prec::almost_eq(n.mean(), 5.0 / 3.0, 1e-15)); assert_eq!(n.pmf(1), 1.0 / 3.0);
Implementations
impl Categorical
[src]
impl Categorical
[src]pub fn new(prob_mass: &[f64]) -> Result<Categorical>
[src]
Constructs a new categorical distribution
with the probabilities masses defined by prob_mass
Errors
Returns an error if prob_mass
is empty, the sum of
the elements in prob_mass
is 0, or any element is less than
0 or is f64::NAN
Note
The elements in prob_mass
do not need to be normalized
Examples
use statrs::distribution::Categorical; let mut result = Categorical::new(&[0.0, 1.0, 2.0]); assert!(result.is_ok()); result = Categorical::new(&[0.0, -1.0, 2.0]); assert!(result.is_err());
Trait Implementations
impl CheckedInverseCDF<f64> for Categorical
[src]
impl CheckedInverseCDF<f64> for Categorical
[src]fn checked_inverse_cdf(&self, x: f64) -> Result<f64>
[src]
impl Clone for Categorical
[src]
impl Clone for Categorical
[src]fn clone(&self) -> Categorical
[src]
pub fn clone_from(&mut self, source: &Self)
1.0.0[src]
impl Discrete<u64, f64> for Categorical
[src]
impl Discrete<u64, f64> for Categorical
[src]impl Distribution<f64> for Categorical
[src]
impl Distribution<f64> for Categorical
[src]impl Entropy<f64> for Categorical
[src]
impl Entropy<f64> for Categorical
[src]impl InverseCDF<f64> for Categorical
[src]
impl InverseCDF<f64> for Categorical
[src]fn inverse_cdf(&self, x: f64) -> f64
[src]
impl Max<u64> for Categorical
[src]
impl Max<u64> for Categorical
[src]impl Mean<f64> for Categorical
[src]
impl Mean<f64> for Categorical
[src]impl Median<f64> for Categorical
[src]
impl Median<f64> for Categorical
[src]impl Min<u64> for Categorical
[src]
impl Min<u64> for Categorical
[src]impl PartialEq<Categorical> for Categorical
[src]
impl PartialEq<Categorical> for Categorical
[src]fn eq(&self, other: &Categorical) -> bool
[src]
fn ne(&self, other: &Categorical) -> bool
[src]
impl Univariate<u64, f64> for Categorical
[src]
impl Univariate<u64, f64> for Categorical
[src]impl Variance<f64> for Categorical
[src]
impl Variance<f64> for Categorical
[src]fn variance(&self) -> f64
[src]
Returns the variance of the categorical distribution
Formula
ⓘ
Σ(p_j * (j - μ)^2)
where p_j
is the j
th probability mass, μ
is the mean,
Σ
is the sum from 0
to k - 1
,
and k
is the number of categories
fn std_dev(&self) -> f64
[src]
Returns the standard deviation of the categorical distribution
Formula
ⓘ
sqrt(Σ(p_j * (j - μ)^2))
where p_j
is the j
th probability mass, μ
is the mean,
Σ
is the sum from 0
to k - 1
,
and k
is the number of categories