pub struct NegativeBinomial { /* private fields */ }
Expand description
Implements the negative binomial distribution.
Please note carefully the meaning of the parameters. As noted in the wikipedia article, there are several different commonly used conventions for the parameters of the negative binomial distribution.
The negative binomial distribution is a discrete distribution with two
parameters, r
and p
. When r
is an integer, the negative binomial
distribution can be interpreted as the distribution of the number of
failures in a sequence of Bernoulli trials that continue until r
successes occur. p
is the probability of success in a single Bernoulli
trial.
NegativeBinomial
accepts non-integer values for r
. This is a
generalization of the more common case where r
is an integer.
§Examples
use statrs::distribution::{NegativeBinomial, Discrete};
use statrs::statistics::DiscreteDistribution;
use statrs::prec::almost_eq;
let r = NegativeBinomial::new(4.0, 0.5).unwrap();
assert_eq!(r.mean().unwrap(), 4.0);
assert!(almost_eq(r.pmf(0), 0.0625, 1e-8));
assert!(almost_eq(r.pmf(3), 0.15625, 1e-8));
Implementations§
Source§impl NegativeBinomial
impl NegativeBinomial
Sourcepub fn new(r: f64, p: f64) -> Result<NegativeBinomial>
pub fn new(r: f64, p: f64) -> Result<NegativeBinomial>
Constructs a new negative binomial distribution with parameters r
and p
. When r
is an integer, the negative binomial distribution
can be interpreted as the distribution of the number of failures in
a sequence of Bernoulli trials that continue until r
successes occur.
p
is the probability of success in a single Bernoulli trial.
§Errors
Returns an error if p
is NaN
, less than 0.0
,
greater than 1.0
, or if r
is NaN
or less than 0
§Examples
use statrs::distribution::NegativeBinomial;
let mut result = NegativeBinomial::new(4.0, 0.5);
assert!(result.is_ok());
result = NegativeBinomial::new(-0.5, 5.0);
assert!(result.is_err());
Trait Implementations§
Source§impl Clone for NegativeBinomial
impl Clone for NegativeBinomial
Source§fn clone(&self) -> NegativeBinomial
fn clone(&self) -> NegativeBinomial
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for NegativeBinomial
impl Debug for NegativeBinomial
Source§impl Discrete<u64, f64> for NegativeBinomial
impl Discrete<u64, f64> for NegativeBinomial
Source§impl DiscreteCDF<u64, f64> for NegativeBinomial
impl DiscreteCDF<u64, f64> for NegativeBinomial
Source§fn sf(&self, x: u64) -> f64
fn sf(&self, x: u64) -> f64
Calculates the survival function for the
negative binomial distribution at x
Note that due to extending the distribution to the reals
(allowing positive real values for r
), while still technically
a discrete distribution the CDF behaves more like that of a
continuous distribution rather than a discrete distribution
(i.e. a smooth graph rather than a step-ladder)
§Formula
I_(1-p)(x+1, r)
where I_(x)(a, b)
is the regularized incomplete beta function
Source§fn inverse_cdf(&self, p: T) -> K
fn inverse_cdf(&self, p: T) -> K
Source§impl DiscreteDistribution<f64> for NegativeBinomial
impl DiscreteDistribution<f64> for NegativeBinomial
Source§impl Distribution<u64> for NegativeBinomial
impl Distribution<u64> for NegativeBinomial
Source§impl Max<u64> for NegativeBinomial
impl Max<u64> for NegativeBinomial
Source§impl Min<u64> for NegativeBinomial
impl Min<u64> for NegativeBinomial
Source§impl PartialEq for NegativeBinomial
impl PartialEq for NegativeBinomial
impl Copy for NegativeBinomial
impl StructuralPartialEq for NegativeBinomial
Auto Trait Implementations§
impl Freeze for NegativeBinomial
impl RefUnwindSafe for NegativeBinomial
impl Send for NegativeBinomial
impl Sync for NegativeBinomial
impl Unpin for NegativeBinomial
impl UnwindSafe for NegativeBinomial
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
impl<SS, SP> SupersetOf<SS> for SPwhere
SS: SubsetOf<SP>,
Source§fn to_subset(&self) -> Option<SS>
fn to_subset(&self) -> Option<SS>
self
from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
fn is_in_subset(&self) -> bool
self
is actually part of its subset T
(and can be converted to it).Source§fn to_subset_unchecked(&self) -> SS
fn to_subset_unchecked(&self) -> SS
self.to_subset
but without any property checks. Always succeeds.Source§fn from_subset(element: &SS) -> SP
fn from_subset(element: &SS) -> SP
self
to the equivalent element of its superset.