Struct rv::dist::Categorical

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

Categorical distribution over unordered values in [0, k).

Implementations§

source§

impl Categorical

source

pub fn new(weights: &[f64]) -> Result<Self, CategoricalError>

Construct a new Categorical distribution from weights

§Arguments
  • weights: A vector describing the proportional likelihood of each outcome. The weights must all be positive, but do not need to sum to 1 because they will be normalized in the constructor.
§Examples
let weights: Vec<f64> = vec![4.0, 2.0, 3.0, 1.0];
let cat = Categorical::new(&weights).unwrap();

assert!(cat.supports(&0_u8));
assert!(cat.supports(&3_u8));
assert!(!cat.supports(&4_u8));

assert::close(cat.pmf(&0_u8), 0.4, 1E-12);
source

pub fn from_ln_weights(ln_weights: Vec<f64>) -> Result<Self, CategoricalError>

Build a Categorical distribution from normalized log weights

§Arguments
  • ln_weights: A vector describing the proportional likelihood of each outcome in log space. sum(exp(ln_weights)) must be equal to 1.
§Example
let ln_weights: Vec<f64> = vec![
    -2.3025850929940455,
    -1.6094379124341003,
    -1.2039728043259361,
    -0.916290731874155
];

let cat = Categorical::from_ln_weights(ln_weights).unwrap();

assert::close(cat.pmf(&0_u8), 0.1, 1E-12);
assert::close(cat.pmf(&1_u8), 0.2, 1E-12);
assert::close(cat.pmf(&2_u8), 0.3, 1E-12);
assert::close(cat.pmf(&3_u8), 0.4, 1E-12);
source

pub fn new_unchecked(ln_weights: Vec<f64>) -> Self

Creates a new Categorical without checking whether the ln weights are valid.

source

pub fn uniform(k: usize) -> Self

Creates a Categorical distribution over [0, k) with uniform weights

source

pub fn weights(&self) -> Vec<f64>

Return the weights (exp(ln_weights))

source

pub fn k(&self) -> usize

Get the number of possible outcomes

§Example
let cat = Categorical::uniform(4);
assert_eq!(cat.k(), 4);
source

pub fn ln_weights(&self) -> &Vec<f64>

Get a reference to the weights

Trait Implementations§

source§

impl<X: CategoricalDatum> Cdf<X> for Categorical

source§

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

source§

fn clone(&self) -> Categorical

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<X: CategoricalDatum> ConjugatePrior<X, Categorical> for Dirichlet

§

type Posterior = Dirichlet

Type of the posterior distribution
§

type MCache = (f64, f64)

Type of the cache for the marginal likelihood
§

type PpCache = (Vec<f64>, f64)

Type of the cache for the posterior predictive
source§

fn posterior(&self, x: &CategoricalData<'_, X>) -> Self::Posterior

source§

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

Compute the cache for the log marginal likelihood.
source§

fn ln_m_with_cache( &self, cache: &Self::MCache, x: &CategoricalData<'_, X>, ) -> f64

Log marginal likelihood with supplied cache.
source§

fn ln_pp_cache(&self, x: &CategoricalData<'_, X>) -> Self::PpCache

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

fn ln_pp_with_cache(&self, cache: &Self::PpCache, y: &X) -> f64

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

fn posterior_from_suffstat(&self, stat: &Fx::Stat) -> Self::Posterior

Computes the posterior distribution from the data
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_with_cache(&self, cache: &Self::PpCache, y: &X) -> f64

source§

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

Posterior Predictive distribution
source§

impl<X: CategoricalDatum> ConjugatePrior<X, Categorical> for SymmetricDirichlet

§

type Posterior = Dirichlet

Type of the posterior distribution
§

type MCache = f64

Type of the cache for the marginal likelihood
§

type PpCache = (Vec<f64>, f64)

Type of the cache for the posterior predictive
source§

fn posterior(&self, x: &CategoricalData<'_, X>) -> Self::Posterior

source§

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

Compute the cache for the log marginal likelihood.
source§

fn ln_m_with_cache( &self, cache: &Self::MCache, x: &CategoricalData<'_, X>, ) -> f64

Log marginal likelihood with supplied cache.
source§

fn ln_pp_cache(&self, x: &CategoricalData<'_, X>) -> Self::PpCache

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

fn ln_pp_with_cache(&self, cache: &Self::PpCache, y: &X) -> f64

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

fn posterior_from_suffstat(&self, stat: &Fx::Stat) -> Self::Posterior

Computes the posterior distribution from the data
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_with_cache(&self, cache: &Self::PpCache, y: &X) -> f64

source§

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

Posterior Predictive distribution
source§

impl Debug for Categorical

source§

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

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

impl<'de> Deserialize<'de> for Categorical

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<X: CategoricalDatum> DiscreteDistr<X> for Categorical

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

source§

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

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

impl Entropy for Categorical

source§

fn entropy(&self) -> f64

The entropy, H(X)
source§

impl From<&Categorical> for String

source§

fn from(cat: &Categorical) -> String

Converts to this type from the input type.
source§

impl HasDensity<Categorical> for Dirichlet

source§

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

Probability function Read more
source§

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

Probability function Read more
source§

impl HasDensity<Categorical> for SymmetricDirichlet

source§

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

Probability function Read more
source§

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

Probability function Read more
source§

impl<X: CategoricalDatum> HasDensity<X> for Categorical

source§

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

Probability function Read more
source§

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

Probability function Read more
source§

impl<X: CategoricalDatum> HasSuffStat<X> for Categorical

§

type Stat = CategoricalSuffStat

source§

fn empty_suffstat(&self) -> Self::Stat

source§

fn ln_f_stat(&self, stat: &Self::Stat) -> f64

Return the log likelihood for the data represented by the sufficient statistic.
source§

impl KlDivergence for Categorical

source§

fn kl(&self, other: &Self) -> f64

The KL divergence, KL(P|Q) between this distribution, P, and another, Q Read more
source§

fn kl_sym(&self, other: &Self) -> f64

Symmetrized divergence, KL(P|Q) + KL(Q|P) Read more
source§

impl<X: CategoricalDatum> Mode<X> for Categorical

source§

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

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

impl Parameterized for Categorical

§

type Parameters = CategoricalParameters

source§

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

source§

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

source§

impl PartialEq for Categorical

source§

fn eq(&self, other: &Categorical) -> 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 PartialOrd for Categorical

source§

fn partial_cmp(&self, other: &Categorical) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · source§

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

This method tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · source§

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

This method tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · source§

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

This method tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · source§

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

This method tests greater than or equal to (for self and other) and is used by the >= operator. Read more
source§

impl Sampleable<Categorical> for Dirichlet

source§

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

Single draw from the Rv 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 Sampleable<Categorical> for SymmetricDirichlet

source§

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

Single draw from the Rv 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<X: CategoricalDatum> Sampleable<X> for Categorical

source§

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

Single draw from the Rv 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 Serialize for Categorical

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<X: CategoricalDatum> Support<X> for Categorical

source§

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

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

impl StructuralPartialEq for Categorical

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> ToString for T
where 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 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