pub struct NormalGamma { /* private fields */ }Expand description
Prior for Gaussian
Given x ~ N(μ, σ), the Normal Gamma prior implies that μ ~ N(m, 1/(rρ))
and ρ ~ Gamma(ν/2, s/2).
Implementations§
Source§impl NormalGamma
impl NormalGamma
Sourcepub fn new(
m: f64,
r: f64,
s: f64,
v: f64,
) -> Result<NormalGamma, NormalGammaError>
pub fn new( m: f64, r: f64, s: f64, v: f64, ) -> Result<NormalGamma, NormalGammaError>
Create a new Normal Gamma distribution
§Arguments
- m: The prior mean
- r: Relative precision of μ versus data
- s: The mean of rho (the precision) is v/s.
- v: Degrees of freedom of precision of rho
Sourcepub fn new_unchecked(m: f64, r: f64, s: f64, v: f64) -> NormalGamma
pub fn new_unchecked(m: f64, r: f64, s: f64, v: f64) -> NormalGamma
Creates a new NormalGamma without checking whether the parameters are valid.
Sourcepub fn set_m(&mut self, m: f64) -> Result<(), NormalGammaError>
pub fn set_m(&mut self, m: f64) -> Result<(), NormalGammaError>
Set the value of m
§Example
use rv::dist::NormalGamma;
let mut ng = NormalGamma::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(ng.m(), 0.0);
ng.set_m(-1.1).unwrap();
assert_eq!(ng.m(), -1.1);Will error for invalid values
assert!(ng.set_m(-1.1).is_ok());
assert!(ng.set_m(std::f64::INFINITY).is_err());
assert!(ng.set_m(std::f64::NEG_INFINITY).is_err());
assert!(ng.set_m(std::f64::NAN).is_err());Sourcepub fn set_m_unchecked(&mut self, m: f64)
pub fn set_m_unchecked(&mut self, m: f64)
Set the value of m without input validation
Sourcepub fn set_r(&mut self, r: f64) -> Result<(), NormalGammaError>
pub fn set_r(&mut self, r: f64) -> Result<(), NormalGammaError>
Set the value of r
§Example
use rv::dist::NormalGamma;
let mut ng = NormalGamma::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(ng.r(), 1.2);
ng.set_r(2.1).unwrap();
assert_eq!(ng.r(), 2.1);Will error for invalid values
assert!(ng.set_r(2.1).is_ok());
// must be greater than zero
assert!(ng.set_r(0.0).is_err());
assert!(ng.set_r(-1.0).is_err());
assert!(ng.set_r(std::f64::INFINITY).is_err());
assert!(ng.set_r(std::f64::NEG_INFINITY).is_err());
assert!(ng.set_r(std::f64::NAN).is_err());Sourcepub fn set_r_unchecked(&mut self, r: f64)
pub fn set_r_unchecked(&mut self, r: f64)
Set the value of r without input validation
Sourcepub fn set_s(&mut self, s: f64) -> Result<(), NormalGammaError>
pub fn set_s(&mut self, s: f64) -> Result<(), NormalGammaError>
Set the value of s
§Example
use rv::dist::NormalGamma;
let mut ng = NormalGamma::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(ng.s(), 2.3);
ng.set_s(3.2).unwrap();
assert_eq!(ng.s(), 3.2);Will error for invalid values
assert!(ng.set_s(2.1).is_ok());
// must be greater than zero
assert!(ng.set_s(0.0).is_err());
assert!(ng.set_s(-1.0).is_err());
assert!(ng.set_s(std::f64::INFINITY).is_err());
assert!(ng.set_s(std::f64::NEG_INFINITY).is_err());
assert!(ng.set_s(std::f64::NAN).is_err());Sourcepub fn set_s_unchecked(&mut self, s: f64)
pub fn set_s_unchecked(&mut self, s: f64)
Set the value of s without input validation
Sourcepub fn set_v(&mut self, v: f64) -> Result<(), NormalGammaError>
pub fn set_v(&mut self, v: f64) -> Result<(), NormalGammaError>
Set the value of v
§Example
use rv::dist::NormalGamma;
let mut ng = NormalGamma::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(ng.v(), 3.4);
ng.set_v(4.3).unwrap();
assert_eq!(ng.v(), 4.3);Will error for invalid values
assert!(ng.set_v(2.1).is_ok());
// must be greater than zero
assert!(ng.set_v(0.0).is_err());
assert!(ng.set_v(-1.0).is_err());
assert!(ng.set_v(std::f64::INFINITY).is_err());
assert!(ng.set_v(std::f64::NEG_INFINITY).is_err());
assert!(ng.set_v(std::f64::NAN).is_err());Sourcepub fn set_v_unchecked(&mut self, v: f64)
pub fn set_v_unchecked(&mut self, v: f64)
Set the value of v without input validation
Trait Implementations§
Source§impl Clone for NormalGamma
impl Clone for NormalGamma
Source§fn clone(&self) -> NormalGamma
fn clone(&self) -> NormalGamma
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ConjugatePrior<f64, Gaussian> for NormalGamma
impl ConjugatePrior<f64, Gaussian> for NormalGamma
Source§type Posterior = NormalGamma
type Posterior = NormalGamma
Type of the posterior distribution
Source§type LnPpCache = (GaussianSuffStat, f64)
type LnPpCache = (GaussianSuffStat, f64)
Type of the
ln_pp cacheSource§fn posterior(&self, x: &DataOrSuffStat<'_, f64, Gaussian>) -> NormalGamma
fn posterior(&self, x: &DataOrSuffStat<'_, f64, Gaussian>) -> NormalGamma
Computes the posterior distribution from the data
Source§fn ln_m_cache(&self) -> <NormalGamma as ConjugatePrior<f64, Gaussian>>::LnMCache
fn ln_m_cache(&self) -> <NormalGamma as ConjugatePrior<f64, Gaussian>>::LnMCache
Compute the cache for the log marginal likelihood.
Source§fn ln_m_with_cache(
&self,
cache: &<NormalGamma as ConjugatePrior<f64, Gaussian>>::LnMCache,
x: &DataOrSuffStat<'_, f64, Gaussian>,
) -> f64
fn ln_m_with_cache( &self, cache: &<NormalGamma as ConjugatePrior<f64, Gaussian>>::LnMCache, x: &DataOrSuffStat<'_, f64, Gaussian>, ) -> f64
Log marginal likelihood with supplied cache.
Source§fn ln_pp_cache(
&self,
x: &DataOrSuffStat<'_, f64, Gaussian>,
) -> <NormalGamma as ConjugatePrior<f64, Gaussian>>::LnPpCache
fn ln_pp_cache( &self, x: &DataOrSuffStat<'_, f64, Gaussian>, ) -> <NormalGamma as ConjugatePrior<f64, Gaussian>>::LnPpCache
Compute the cache for the Log posterior predictive of y given x. Read more
Source§fn ln_pp_with_cache(
&self,
cache: &<NormalGamma as ConjugatePrior<f64, Gaussian>>::LnPpCache,
y: &f64,
) -> f64
fn ln_pp_with_cache( &self, cache: &<NormalGamma as ConjugatePrior<f64, Gaussian>>::LnPpCache, y: &f64, ) -> f64
Log posterior predictive of y given x with supplied ln(norm)
Source§fn ln_m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64
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
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
fn m(&self, x: &DataOrSuffStat<'_, X, Fx>) -> f64
Marginal likelihood of x
Source§impl ContinuousDistr<Gaussian> for NormalGamma
impl ContinuousDistr<Gaussian> for NormalGamma
Source§impl Debug for NormalGamma
impl Debug for NormalGamma
Source§impl Display for NormalGamma
impl Display for NormalGamma
Source§impl GewekeTestable<Gaussian, f64> for NormalGamma
impl GewekeTestable<Gaussian, f64> for NormalGamma
Source§impl PartialEq for NormalGamma
impl PartialEq for NormalGamma
Source§impl Rv<Gaussian> for NormalGamma
impl Rv<Gaussian> for NormalGamma
Source§impl Support<Gaussian> for NormalGamma
impl Support<Gaussian> for NormalGamma
impl StructuralPartialEq for NormalGamma
Auto Trait Implementations§
impl Freeze for NormalGamma
impl RefUnwindSafe for NormalGamma
impl Send for NormalGamma
impl Sync for NormalGamma
impl Unpin for NormalGamma
impl UnsafeUnpin for NormalGamma
impl UnwindSafe for NormalGamma
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
Mutably borrows from an owned value. Read more
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
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 moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
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 moreSource§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>
The inverse inclusion map: attempts to construct
self from the equivalent element of its
superset. Read moreSource§fn is_in_subset(&self) -> bool
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
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
fn from_subset(element: &SS) -> SP
The inclusion map: converts
self to the equivalent element of its superset.