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
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());
Returns the probabilities of the multinomial distribution as a slice
Examples
use statrs::distribution::Multinomial;
let n = Multinomial::new(&[0.0, 1.0, 2.0], 3).unwrap();
assert_eq!(n.p(), [0.0, 1.0, 2.0]);
Trait Implementations
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
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
Generate a random value of T
, using rng
as the source of randomness.
Create an iterator that generates random values of T
, using rng
as
the source of randomness. Read more
This method tests for self
and other
values to be equal, and is used
by ==
. Read more
This method tests for !=
.
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
Mutably borrows from an owned value. Read more
The inverse inclusion map: attempts to construct self
from the equivalent element of its
superset. Read more
Checks if self
is actually part of its subset T
(and can be converted to it).
Use with care! Same as self.to_subset
but without any property checks. Always succeeds.
The inclusion map: converts self
to the equivalent element of its superset.