Struct rv::dist::NegBinomial

source ·
pub struct NegBinomial { /* private fields */ }
Expand description

Negative Binomial distribution NBin(r, p).

§Notes

This crate uses the parameterization found on Wolfram Mathworld, which is also the parameterization used in scipy.

§Parameters

  • r: The number of successes before the trials are stopped
  • p: The success probability

Implementations§

source§

impl NegBinomial

source

pub fn new(r: f64, p: f64) -> Result<Self, NegBinomialError>

Create a new Negative Binomial distribution

source

pub fn new_unchecked(r: f64, p: f64) -> Self

Create a new Negative Binomial distribution without input validation.

source

pub fn r(&self) -> f64

Get the value of the r parameter

source

pub fn set_r(&mut self, r: f64) -> Result<(), NegBinomialError>

Change the value of the r parameter

§Example
use rv::dist::NegBinomial;

let mut nbin = NegBinomial::new(4.0, 0.8).unwrap();

assert!((nbin.r() - 4.0).abs() < 1E-10);

nbin.set_r(2.5).unwrap();

assert!((nbin.r() - 2.5).abs() < 1E-10);

Will error for invalid values

assert!(nbin.set_r(2.0).is_ok());
assert!(nbin.set_r(1.0).is_ok());

// r must be >= 1.0
assert!(nbin.set_r(0.99).is_err());

assert!(nbin.set_r(f64::INFINITY).is_err());
assert!(nbin.set_r(f64::NEG_INFINITY).is_err());
assert!(nbin.set_r(f64::NAN).is_err());
source

pub fn set_r_unchecked(&mut self, r: f64)

Set the value of r without input validation

source

pub fn p(&self) -> f64

Get the value of the p parameter

source

pub fn set_p(&mut self, p: f64) -> Result<(), NegBinomialError>

Change the value of the p parameter

§Example
use rv::dist::NegBinomial;

let mut nbin = NegBinomial::new(4.0, 0.8).unwrap();

assert!((nbin.p() - 0.8).abs() < 1E-10);

nbin.set_p(0.51).unwrap();

assert!((nbin.p() - 0.51).abs() < 1E-10);

Will error for invalid values

// OK values in [0, 1]
assert!(nbin.set_p(0.51).is_ok());
assert!(nbin.set_p(0.0).is_ok());
assert!(nbin.set_p(1.0).is_ok());

// Too low, not in [0, 1]
assert!(nbin.set_p(-0.1).is_err());

// Too high, not in [0, 1]
assert!(nbin.set_p(-1.1).is_err());

assert!(nbin.set_p(f64::INFINITY).is_err());
assert!(nbin.set_p(f64::NEG_INFINITY).is_err());
assert!(nbin.set_p(f64::NAN).is_err());
source

pub fn set_p_unchecked(&mut self, p: f64)

Set the value of p without input validation

Trait Implementations§

source§

impl Cdf<u16> for NegBinomial

source§

fn cdf(&self, x: &u16) -> f64

The value of the Cumulative Density Function at x Read more
source§

fn sf(&self, x: &X) -> f64

Survival function, 1 - CDF(x)
source§

impl Cdf<u32> for NegBinomial

source§

fn cdf(&self, x: &u32) -> f64

The value of the Cumulative Density Function at x Read more
source§

fn sf(&self, x: &X) -> f64

Survival function, 1 - CDF(x)
source§

impl Cdf<u8> for NegBinomial

source§

fn cdf(&self, x: &u8) -> f64

The value of the Cumulative Density Function at x Read more
source§

fn sf(&self, x: &X) -> f64

Survival function, 1 - CDF(x)
source§

impl Clone for NegBinomial

source§

fn clone(&self) -> NegBinomial

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for NegBinomial

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl<'de> Deserialize<'de> for NegBinomial

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl DiscreteDistr<u16> for NegBinomial

source§

fn pmf(&self, x: &X) -> f64

Probability mass function (PMF) at x Read more
source§

fn ln_pmf(&self, x: &X) -> f64

Natural logarithm of the probability mass function (PMF) Read more
source§

impl DiscreteDistr<u32> for NegBinomial

source§

fn pmf(&self, x: &X) -> f64

Probability mass function (PMF) at x Read more
source§

fn ln_pmf(&self, x: &X) -> f64

Natural logarithm of the probability mass function (PMF) Read more
source§

impl DiscreteDistr<u8> for NegBinomial

source§

fn pmf(&self, x: &X) -> f64

Probability mass function (PMF) at x Read more
source§

fn ln_pmf(&self, x: &X) -> f64

Natural logarithm of the probability mass function (PMF) Read more
source§

impl HasDensity<u16> for NegBinomial

source§

fn ln_f(&self, x: &u16) -> f64

Probability function Read more
source§

fn f(&self, x: &X) -> f64

Probability function Read more
source§

impl HasDensity<u32> for NegBinomial

source§

fn ln_f(&self, x: &u32) -> f64

Probability function Read more
source§

fn f(&self, x: &X) -> f64

Probability function Read more
source§

impl HasDensity<u8> for NegBinomial

source§

fn ln_f(&self, x: &u8) -> f64

Probability function Read more
source§

fn f(&self, x: &X) -> f64

Probability function Read more
source§

impl Kurtosis for NegBinomial

source§

impl Mean<f64> for NegBinomial

source§

fn mean(&self) -> Option<f64>

Returns None if the mean is undefined
source§

impl Parameterized for NegBinomial

§

type Parameters = NegBinomialParameters

source§

fn emit_params(&self) -> Self::Parameters

source§

fn from_params(params: Self::Parameters) -> Self

source§

impl PartialEq for NegBinomial

source§

fn eq(&self, other: &NegBinomial) -> bool

This method tests for self and other values to be equal, and is used by ==.
1.0.0 · source§

fn ne(&self, other: &Rhs) -> bool

This method tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
source§

impl Sampleable<u16> for NegBinomial

source§

fn draw<R: Rng>(&self, rng: &mut R) -> u16

Single draw from the Rv Read more
source§

fn sample<R: Rng>(&self, n: usize, rng: &mut R) -> Vec<u16>

Multiple draws of the Rv Read more
source§

fn sample_stream<'r, R: Rng>( &'r self, rng: &'r mut R, ) -> Box<dyn Iterator<Item = X> + 'r>

Create a never-ending iterator of samples Read more
source§

impl Sampleable<u32> for NegBinomial

source§

fn draw<R: Rng>(&self, rng: &mut R) -> u32

Single draw from the Rv Read more
source§

fn sample<R: Rng>(&self, n: usize, rng: &mut R) -> Vec<u32>

Multiple draws of the Rv Read more
source§

fn sample_stream<'r, R: Rng>( &'r self, rng: &'r mut R, ) -> Box<dyn Iterator<Item = X> + 'r>

Create a never-ending iterator of samples Read more
source§

impl Sampleable<u8> for NegBinomial

source§

fn draw<R: Rng>(&self, rng: &mut R) -> u8

Single draw from the Rv Read more
source§

fn sample<R: Rng>(&self, n: usize, rng: &mut R) -> Vec<u8>

Multiple draws of the Rv Read more
source§

fn sample_stream<'r, R: Rng>( &'r self, rng: &'r mut R, ) -> Box<dyn Iterator<Item = X> + 'r>

Create a never-ending iterator of samples Read more
source§

impl Serialize for NegBinomial

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Skewness for NegBinomial

source§

impl Support<u16> for NegBinomial

source§

fn supports(&self, _x: &u16) -> bool

Returns true if x is in the support of the Rv Read more
source§

impl Support<u32> for NegBinomial

source§

fn supports(&self, _x: &u32) -> bool

Returns true if x is in the support of the Rv Read more
source§

impl Support<u8> for NegBinomial

source§

fn supports(&self, _x: &u8) -> bool

Returns true if x is in the support of the Rv Read more
source§

impl Variance<f64> for NegBinomial

source§

fn variance(&self) -> Option<f64>

Returns None if the variance is undefined

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> CloneToUninit for T
where T: Clone,

source§

default unsafe fn clone_to_uninit(&self, dst: *mut T)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

source§

fn vzip(self) -> V

source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

source§

impl<S, O, T> Process<S, O> for T
where T: Sampleable<S> + HasDensity<O>,

source§

impl<X, T> Rv<X> for T
where T: Sampleable<X> + HasDensity<X>,

source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

source§

impl<T> SendAlias for T

source§

impl<T> SyncAlias for T