Struct rv::dist::Dirichlet

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

Dirichlet distribution over points on the k-simplex.

Implementations§

source§

impl Dirichlet

source

pub fn new(alphas: Vec<f64>) -> Result<Self, DirichletError>

Creates a Dirichlet with a given alphas vector

source

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

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

source

pub fn symmetric(alpha: f64, k: usize) -> Result<Self, DirichletError>

Creates a Dirichlet where all alphas are identical.

Notes

SymmetricDirichlet if faster and more compact, and is the preferred way to represent a Dirichlet symmetric weights.

Examples
let dir = Dirichlet::symmetric(1.0, 4).unwrap();
assert_eq!(*dir.alphas(), vec![1.0, 1.0, 1.0, 1.0]);

// Equivalent to SymmetricDirichlet
let symdir = SymmetricDirichlet::new(1.0, 4).unwrap();
let x: Vec<f64> = vec![0.1, 0.4, 0.3, 0.2];
assert::close(dir.ln_f(&x), symdir.ln_f(&x), 1E-12);
source

pub fn jeffreys(k: usize) -> Result<Self, DirichletError>

Creates a Dirichlet with all alphas = 0.5 (Jeffreys prior)

Notes

SymmetricDirichlet if faster and more compact, and is the preferred way to represent a Dirichlet symmetric weights.

Examples
let dir = Dirichlet::jeffreys(3).unwrap();
assert_eq!(*dir.alphas(), vec![0.5, 0.5, 0.5]);

// Equivalent to SymmetricDirichlet::jeffreys
let symdir = SymmetricDirichlet::jeffreys(3).unwrap();
let x: Vec<f64> = vec![0.1, 0.4, 0.5];
assert::close(dir.ln_f(&x), symdir.ln_f(&x), 1E-12);
source

pub fn k(&self) -> usize

The length of alphas / the number of categories

source

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

Get a reference to the weights vector, alphas

Trait Implementations§

source§

impl Clone for Dirichlet

source§

fn clone(&self) -> Dirichlet

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 LnMCache = (f64, f64)

Type of the ln_m cache
§

type LnPpCache = (Vec<f64, Global>, f64)

Type of the ln_pp cache
source§

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

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: &CategoricalData<'_, X> ) -> f64

Log marginal likelihood with supplied cache.
source§

fn ln_pp_cache(&self, x: &CategoricalData<'_, X>) -> 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: &X) -> 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<Vec<f64, Global>> for Dirichlet

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 Dirichlet

source§

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

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

impl<'de> Deserialize<'de> for Dirichlet

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 Dirichlet

source§

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

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

impl From<&Dirichlet> for String

source§

fn from(dir: &Dirichlet) -> String

Converts to this type from the input type.
source§

impl From<&SymmetricDirichlet> for Dirichlet

source§

fn from(symdir: &SymmetricDirichlet) -> Self

Converts to this type from the input type.
source§

impl From<SymmetricDirichlet> for Dirichlet

source§

fn from(symdir: SymmetricDirichlet) -> Self

Converts to this type from the input type.
source§

impl PartialEq<Dirichlet> for Dirichlet

source§

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

source§

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

Probability function Read more
source§

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

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<Vec<f64, Global>> for Dirichlet

source§

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

Single draw from the Rv Read more
source§

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

Probability function 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 Serialize for Dirichlet

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 Support<Vec<f64, Global>> for Dirichlet

source§

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

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

impl StructuralPartialEq for Dirichlet

Auto Trait Implementations§

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