Struct rv::dist::Gamma

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

Gamma distribution G(α, β) over x in (0, ∞).

NOTE: The gamma distribution is parameterized in terms of shape, α, and rate, β.

            β^α
f(x|α, β) = ----  x^(α-1) e^(-βx)
            Γ(α)

Implementations§

source§

impl Gamma

source

pub fn new(shape: f64, rate: f64) -> Result<Self, GammaError>

Create a new Gamma distribution with shape (α) and rate (β).

source

pub fn new_unchecked(shape: f64, rate: f64) -> Self

Creates a new Gamma without checking whether the parameters are valid.

source

pub fn shape(&self) -> f64

Get the shape parameter

Example
let gam = Gamma::new(2.0, 1.0).unwrap();
assert_eq!(gam.shape(), 2.0);
source

pub fn set_shape(&mut self, shape: f64) -> Result<(), GammaError>

Set the shape parameter

Example
let mut gam = Gamma::new(2.0, 1.0).unwrap();
assert_eq!(gam.shape(), 2.0);

gam.set_shape(1.1).unwrap();
assert_eq!(gam.shape(), 1.1);

Will error for invalid values

assert!(gam.set_shape(1.1).is_ok());
assert!(gam.set_shape(0.0).is_err());
assert!(gam.set_shape(-1.0).is_err());
assert!(gam.set_shape(std::f64::INFINITY).is_err());
assert!(gam.set_shape(std::f64::NEG_INFINITY).is_err());
assert!(gam.set_shape(std::f64::NAN).is_err());
source

pub fn set_shape_unchecked(&mut self, shape: f64)

Set the shape parameter without input validation

source

pub fn rate(&self) -> f64

Get the rate parameter

Example
let gam = Gamma::new(2.0, 1.0).unwrap();
assert_eq!(gam.rate(), 1.0);
source

pub fn set_rate(&mut self, rate: f64) -> Result<(), GammaError>

Set the rate parameter

Example
let mut gam = Gamma::new(2.0, 1.0).unwrap();
assert_eq!(gam.rate(), 1.0);

gam.set_rate(1.1).unwrap();
assert_eq!(gam.rate(), 1.1);

Will error for invalid values

assert!(gam.set_rate(1.1).is_ok());
assert!(gam.set_rate(0.0).is_err());
assert!(gam.set_rate(-1.0).is_err());
assert!(gam.set_rate(std::f64::INFINITY).is_err());
assert!(gam.set_rate(std::f64::NEG_INFINITY).is_err());
assert!(gam.set_rate(std::f64::NAN).is_err());
source

pub fn set_rate_unchecked(&mut self, rate: f64)

Set the rate parameter without input validation

Trait Implementations§

source§

impl Cdf<f32> for Gamma

source§

fn cdf(&self, x: &f32) -> 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<f64> for Gamma

source§

fn cdf(&self, x: &f64) -> 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 Gamma

source§

fn clone(&self) -> Gamma

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 ConjugatePrior<u16, Poisson> for Gamma

§

type Posterior = Gamma

Type of the posterior distribution
§

type LnMCache = f64

Type of the ln_m cache
§

type LnPpCache = (f64, f64, f64)

Type of the ln_pp cache
source§

fn posterior(&self, x: &DataOrSuffStat<'_, u16, Poisson>) -> Self

Computes the posterior distribution from the data
source§

fn ln_m_cache(&self) -> Self::LnMCache

Compute the cache for the log marginal likelihood.
source§

fn ln_m_with_cache( &self, cache: &Self::LnMCache, x: &DataOrSuffStat<'_, u16, Poisson> ) -> f64

Log marginal likelihood with supplied cache.
source§

fn ln_pp_cache(&self, x: &DataOrSuffStat<'_, u16, Poisson>) -> Self::LnPpCache

Compute the cache for the Log posterior predictive of y given x. Read more
source§

fn ln_pp_with_cache(&self, cache: &Self::LnPpCache, y: &u16) -> f64

Log posterior predictive of y given x with supplied ln(norm)
source§

fn ln_m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64

The log marginal likelihood
source§

fn ln_pp(&self, y: &X, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Log posterior predictive of y given x
source§

fn m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Marginal likelihood of x
source§

fn pp(&self, y: &X, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Posterior Predictive distribution
source§

impl ConjugatePrior<u32, Poisson> for Gamma

§

type Posterior = Gamma

Type of the posterior distribution
§

type LnMCache = f64

Type of the ln_m cache
§

type LnPpCache = (f64, f64, f64)

Type of the ln_pp cache
source§

fn posterior(&self, x: &DataOrSuffStat<'_, u32, Poisson>) -> Self

Computes the posterior distribution from the data
source§

fn ln_m_cache(&self) -> Self::LnMCache

Compute the cache for the log marginal likelihood.
source§

fn ln_m_with_cache( &self, cache: &Self::LnMCache, x: &DataOrSuffStat<'_, u32, Poisson> ) -> f64

Log marginal likelihood with supplied cache.
source§

fn ln_pp_cache(&self, x: &DataOrSuffStat<'_, u32, Poisson>) -> Self::LnPpCache

Compute the cache for the Log posterior predictive of y given x. Read more
source§

fn ln_pp_with_cache(&self, cache: &Self::LnPpCache, y: &u32) -> f64

Log posterior predictive of y given x with supplied ln(norm)
source§

fn ln_m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64

The log marginal likelihood
source§

fn ln_pp(&self, y: &X, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Log posterior predictive of y given x
source§

fn m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Marginal likelihood of x
source§

fn pp(&self, y: &X, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Posterior Predictive distribution
source§

impl ConjugatePrior<u8, Poisson> for Gamma

§

type Posterior = Gamma

Type of the posterior distribution
§

type LnMCache = f64

Type of the ln_m cache
§

type LnPpCache = (f64, f64, f64)

Type of the ln_pp cache
source§

fn posterior(&self, x: &DataOrSuffStat<'_, u8, Poisson>) -> Self

Computes the posterior distribution from the data
source§

fn ln_m_cache(&self) -> Self::LnMCache

Compute the cache for the log marginal likelihood.
source§

fn ln_m_with_cache( &self, cache: &Self::LnMCache, x: &DataOrSuffStat<'_, u8, Poisson> ) -> f64

Log marginal likelihood with supplied cache.
source§

fn ln_pp_cache(&self, x: &DataOrSuffStat<'_, u8, Poisson>) -> Self::LnPpCache

Compute the cache for the Log posterior predictive of y given x. Read more
source§

fn ln_pp_with_cache(&self, cache: &Self::LnPpCache, y: &u8) -> f64

Log posterior predictive of y given x with supplied ln(norm)
source§

fn ln_m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64

The log marginal likelihood
source§

fn ln_pp(&self, y: &X, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Log posterior predictive of y given x
source§

fn m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Marginal likelihood of x
source§

fn pp(&self, y: &X, x: &DataOrSuffStat<'_, X, Fx>) -> f64

Posterior Predictive distribution
source§

impl ContinuousDistr<Poisson> for Gamma

source§

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

The value of the Probability Density Function (PDF) at x Read more
source§

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

The value of the log Probability Density Function (PDF) at x Read more
source§

impl ContinuousDistr<f32> for Gamma

source§

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

The value of the Probability Density Function (PDF) at x Read more
source§

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

The value of the log Probability Density Function (PDF) at x Read more
source§

impl ContinuousDistr<f64> for Gamma

source§

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

The value of the Probability Density Function (PDF) at x Read more
source§

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

The value of the log Probability Density Function (PDF) at x Read more
source§

impl Debug for Gamma

source§

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

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

impl Default for Gamma

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for Gamma

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 Display for Gamma

source§

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

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

impl Entropy for Gamma

source§

fn entropy(&self) -> f64

The entropy, H(X)
source§

impl From<&Gamma> for String

source§

fn from(gam: &Gamma) -> String

Converts to this type from the input type.
source§

impl Kurtosis for Gamma

source§

impl Mean<f32> for Gamma

source§

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

Returns None if the mean is undefined
source§

impl Mean<f64> for Gamma

source§

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

Returns None if the mean is undefined
source§

impl Mode<f32> for Gamma

source§

fn mode(&self) -> Option<f32>

Returns None if the mode is undefined or is not a single value
source§

impl Mode<f64> for Gamma

source§

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

Returns None if the mode is undefined or is not a single value
source§

impl PartialEq<Gamma> for Gamma

source§

fn eq(&self, other: &Gamma) -> 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 Rv<Poisson> for Gamma

source§

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

Probability function Read more
source§

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

Single draw from the Rv Read more
source§

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

Probability function Read more
source§

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

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 Rv<f32> for Gamma

source§

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

Probability function Read more
source§

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

Single draw from the Rv Read more
source§

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

Multiple draws of the Rv Read more
source§

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

Probability function 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 Rv<f64> for Gamma

source§

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

Probability function Read more
source§

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

Single draw from the Rv Read more
source§

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

Multiple draws of the Rv Read more
source§

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

Probability function 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 Gamma

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 Gamma

source§

impl Support<Poisson> for Gamma

source§

fn supports(&self, x: &Poisson) -> bool

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

impl Support<f32> for Gamma

source§

fn supports(&self, x: &f32) -> bool

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

impl Support<f64> for Gamma

source§

fn supports(&self, x: &f64) -> bool

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

impl Variance<f64> for Gamma

source§

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

Returns None if the variance is undefined

Auto Trait Implementations§

§

impl RefUnwindSafe for Gamma

§

impl Send for Gamma

§

impl Sync for Gamma

§

impl Unpin for Gamma

§

impl UnwindSafe for Gamma

Blanket Implementations§

source§

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

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

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

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

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

source§

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

Mutably borrows from an owned value. 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 Twhere 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<Fx> Rv<Datum> for Fxwhere Fx: RvDatum,

source§

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

Probability function Read more
source§

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

Single draw from the Rv Read more
source§

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

Multiple draws of the Rv Read more
source§

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

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

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

Probability function Read more
source§

impl<T> Same<T> for T

§

type Output = T

Should always be Self
§

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

§

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

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

fn is_in_subset(&self) -> bool

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

fn to_subset_unchecked(&self) -> SS

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

fn from_subset(element: &SS) -> SP

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

impl<T> ToOwned for Twhere 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> ToString for Twhere T: Display + ?Sized,

source§

default fn to_string(&self) -> String

Converts the given value to a String. Read more
source§

impl<T, U> TryFrom<U> for Twhere 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 Twhere 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.
§

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

§

fn vzip(self) -> V

source§

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

source§

impl<T> DeserializeOwnedAlias for Twhere T: DeserializeOwned,

source§

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

source§

impl<T> SendAlias for T

§

impl<T> SendSyncUnwindSafe for Twhere T: Send + Sync + UnwindSafe + ?Sized,

source§

impl<T> SerializeAlias for Twhere T: Serialize,

source§

impl<T> SyncAlias for T