Struct statrs::distribution::Categorical
source · [−]pub struct Categorical { /* private fields */ }
Expand description
Implements the Categorical distribution, also known as the generalized Bernoulli or discrete distribution
Examples
use statrs::distribution::{Categorical, Discrete};
use statrs::statistics::Distribution;
use statrs::prec;
let n = Categorical::new(&[0.0, 1.0, 2.0]).unwrap();
assert!(prec::almost_eq(n.mean().unwrap(), 5.0 / 3.0, 1e-15));
assert_eq!(n.pmf(1), 1.0 / 3.0);
Implementations
sourceimpl Categorical
impl Categorical
sourcepub fn new(prob_mass: &[f64]) -> Result<Categorical>
pub fn new(prob_mass: &[f64]) -> Result<Categorical>
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
sourceimpl Clone for Categorical
impl Clone for Categorical
sourcefn clone(&self) -> Categorical
fn clone(&self) -> Categorical
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source
. Read more
sourceimpl Debug for Categorical
impl Debug for Categorical
sourceimpl Discrete<u64, f64> for Categorical
impl Discrete<u64, f64> for Categorical
sourceimpl DiscreteCDF<u64, f64> for Categorical
impl DiscreteCDF<u64, f64> for Categorical
sourceimpl Distribution<f64> for Categorical
impl Distribution<f64> for Categorical
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f64
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> f64
Generate a random value of T
, using rng
as the source of randomness.
sourcefn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
fn sample_iter<R>(self, rng: R) -> DistIter<Self, R, T> where
R: Rng,
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
sourceimpl Distribution<f64> for Categorical
impl Distribution<f64> for Categorical
sourcefn mean(&self) -> Option<f64>
fn mean(&self) -> Option<f64>
Returns the mean of the categorical distribution
Formula
Σ(j * p_j)
where p_j
is the j
th probability mass,
Σ
is the sum from 0
to k - 1
,
and k
is the number of categories
sourcefn variance(&self) -> Option<f64>
fn variance(&self) -> Option<f64>
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
sourceimpl Max<u64> for Categorical
impl Max<u64> for Categorical
sourceimpl Median<f64> for Categorical
impl Median<f64> for Categorical
sourceimpl Min<u64> for Categorical
impl Min<u64> for Categorical
sourceimpl PartialEq<Categorical> for Categorical
impl PartialEq<Categorical> for Categorical
sourcefn eq(&self, other: &Categorical) -> bool
fn eq(&self, other: &Categorical) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Categorical) -> bool
fn ne(&self, other: &Categorical) -> bool
This method tests for !=
.
impl StructuralPartialEq for Categorical
Auto Trait Implementations
impl RefUnwindSafe for Categorical
impl Send for Categorical
impl Sync for Categorical
impl Unpin for Categorical
impl UnwindSafe for Categorical
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SP where
SS: SubsetOf<SP>,
sourcepub fn to_subset(&self) -> Option<SS>
pub fn to_subset(&self) -> Option<SS>
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
sourcepub fn is_in_subset(&self) -> bool
pub fn is_in_subset(&self) -> bool
Checks if self
is actually part of its subset T
(and can be converted to it).
sourcepub fn to_subset_unchecked(&self) -> SS
pub fn to_subset_unchecked(&self) -> SS
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
sourcepub fn from_subset(element: &SS) -> SP
pub fn from_subset(element: &SS) -> SP
The inclusion map: converts self
to the equivalent element of its superset.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more