Struct statrs::distribution::Multinomial
source · [−]pub struct Multinomial { /* private fields */ }
Expand description
Implements the Multinomial distribution which is a generalization of the Binomial distribution
Examples
use statrs::distribution::Multinomial;
use statrs::statistics::MeanN;
use nalgebra::DVector;
let n = Multinomial::new(&[0.3, 0.7], 5).unwrap();
assert_eq!(n.mean().unwrap(), DVector::from_vec(vec![1.5, 3.5]));
Implementations
sourceimpl Multinomial
impl Multinomial
sourcepub fn new(p: &[f64], n: u64) -> Result<Multinomial>
pub fn new(p: &[f64], n: u64) -> Result<Multinomial>
Constructs a new multinomial distribution with probabilities p
and n
number of trials.
Errors
Returns an error if p
is empty, the sum of the elements
in p
is 0, or any element in p
is less than 0 or is f64::NAN
Note
The elements in p
do not need to be normalized
Examples
use statrs::distribution::Multinomial;
let mut result = Multinomial::new(&[0.0, 1.0, 2.0], 3);
assert!(result.is_ok());
result = Multinomial::new(&[0.0, -1.0, 2.0], 3);
assert!(result.is_err());
Trait Implementations
sourceimpl Clone for Multinomial
impl Clone for Multinomial
sourcefn clone(&self) -> Multinomial
fn clone(&self) -> Multinomial
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 Multinomial
impl Debug for Multinomial
sourceimpl<'a> Discrete<&'a [u64], f64> for Multinomial
impl<'a> Discrete<&'a [u64], f64> for Multinomial
sourcefn pmf(&self, x: &[u64]) -> f64
fn pmf(&self, x: &[u64]) -> f64
Calculates the probability mass function for the multinomial
distribution
with the given x
’s corresponding to the probabilities for this
distribution
Panics
If the elements in x
do not sum to n
or if the length of x
is not
equivalent to the length of p
Formula
(n! / x_1!...x_k!) * p_i^x_i for i in 1...k
where n
is the number of trials, p_i
is the i
th probability,
x_i
is the i
th x
value, and k
is the total number of
probabilities
sourcefn ln_pmf(&self, x: &[u64]) -> f64
fn ln_pmf(&self, x: &[u64]) -> f64
Calculates the log probability mass function for the multinomial
distribution
with the given x
’s corresponding to the probabilities for this
distribution
Panics
If the elements in x
do not sum to n
or if the length of x
is not
equivalent to the length of p
Formula
ln((n! / x_1!...x_k!) * p_i^x_i) for i in 1...k
where n
is the number of trials, p_i
is the i
th probability,
x_i
is the i
th x
value, and k
is the total number of
probabilities
sourceimpl Distribution<Vec<f64, Global>> for Multinomial
impl Distribution<Vec<f64, Global>> for Multinomial
sourcefn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Vec<f64>
fn sample<R: Rng + ?Sized>(&self, rng: &mut R) -> Vec<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 MeanN<Matrix<f64, Dynamic, Const<1_usize>, VecStorage<f64, Dynamic, Const<1_usize>>>> for Multinomial
impl MeanN<Matrix<f64, Dynamic, Const<1_usize>, VecStorage<f64, Dynamic, Const<1_usize>>>> for Multinomial
sourceimpl PartialEq<Multinomial> for Multinomial
impl PartialEq<Multinomial> for Multinomial
sourcefn eq(&self, other: &Multinomial) -> bool
fn eq(&self, other: &Multinomial) -> bool
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
sourcefn ne(&self, other: &Multinomial) -> bool
fn ne(&self, other: &Multinomial) -> bool
This method tests for !=
.
sourceimpl VarianceN<Matrix<f64, Dynamic, Dynamic, VecStorage<f64, Dynamic, Dynamic>>> for Multinomial
impl VarianceN<Matrix<f64, Dynamic, Dynamic, VecStorage<f64, Dynamic, Dynamic>>> for Multinomial
impl StructuralPartialEq for Multinomial
Auto Trait Implementations
impl RefUnwindSafe for Multinomial
impl Send for Multinomial
impl Sync for Multinomial
impl Unpin for Multinomial
impl UnwindSafe for Multinomial
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