Skip to main content

NormalInvChiSquared

Struct NormalInvChiSquared 

Source
pub struct NormalInvChiSquared { /* private fields */ }
Expand description

Prior for Gaussian

Given x ~ N(μ, σ), the Normal Inverse Chi Squared prior implies that μ ~ N(m, σ/√k) and σ² ~ ScaledInvChiSquared(v, s2).

Implementations§

Source§

impl NormalInvChiSquared

Source

pub fn new( m: f64, k: f64, v: f64, s2: f64, ) -> Result<NormalInvChiSquared, NormalInvChiSquaredError>

Create a new Normal Inverse Gamma distribution

§Arguments
  • m: The prior mean
  • k: How strongly we believe the prior mean (in prior pseudo-observations)
  • v: How strongly we believe the prior variance (in prior pseudo-observations)
  • s2: The prior variance
Source

pub fn new_unchecked(m: f64, k: f64, v: f64, s2: f64) -> NormalInvChiSquared

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

Source

pub fn params(&self) -> (f64, f64, f64, f64)

Returns (m, k, v, s2)

Source

pub fn m(&self) -> f64

Get the m parameter

Source

pub fn set_m(&mut self, m: f64) -> Result<(), NormalInvChiSquaredError>

Set the value of m

§Example
use rv::dist::NormalInvChiSquared;

let mut nix = NormalInvChiSquared::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(nix.m(), 0.0);

nix.set_m(-1.1).unwrap();
assert_eq!(nix.m(), -1.1);

Will error for invalid values

assert!(nix.set_m(-1.1).is_ok());
assert!(nix.set_m(std::f64::INFINITY).is_err());
assert!(nix.set_m(std::f64::NEG_INFINITY).is_err());
assert!(nix.set_m(std::f64::NAN).is_err());
Source

pub fn set_m_unchecked(&mut self, m: f64)

Set the value of m without input validation

Source

pub fn k(&self) -> f64

Get the k parameter

Source

pub fn set_k(&mut self, k: f64) -> Result<(), NormalInvChiSquaredError>

Set the value of k

§Example
use rv::dist::NormalInvChiSquared;

let mut nix = NormalInvChiSquared::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(nix.k(), 1.2);

nix.set_k(4.3).unwrap();
assert_eq!(nix.k(), 4.3);

Will error for invalid values

assert!(nix.set_k(2.1).is_ok());

// must be greater than zero
assert!(nix.set_k(0.0).is_err());
assert!(nix.set_k(-1.0).is_err());


assert!(nix.set_k(std::f64::INFINITY).is_err());
assert!(nix.set_k(std::f64::NEG_INFINITY).is_err());
assert!(nix.set_k(std::f64::NAN).is_err());
Source

pub fn set_k_unchecked(&mut self, k: f64)

Set the value of k without input validation

Source

pub fn v(&self) -> f64

Get the v parameter

Source

pub fn set_v(&mut self, v: f64) -> Result<(), NormalInvChiSquaredError>

Set the value of v

§Example
use rv::dist::NormalInvChiSquared;

let mut nix = NormalInvChiSquared::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(nix.v(), 2.3);

nix.set_v(4.3).unwrap();
assert_eq!(nix.v(), 4.3);

Will error for invalid values

assert!(nix.set_v(2.1).is_ok());

// must be greater than zero
assert!(nix.set_v(0.0).is_err());
assert!(nix.set_v(-1.0).is_err());


assert!(nix.set_v(std::f64::INFINITY).is_err());
assert!(nix.set_v(std::f64::NEG_INFINITY).is_err());
assert!(nix.set_v(std::f64::NAN).is_err());
Source

pub fn set_v_unchecked(&mut self, v: f64)

Set the value of v without input validation

Source

pub fn s2(&self) -> f64

Get the s2 parameter

Source

pub fn set_s2(&mut self, s2: f64) -> Result<(), NormalInvChiSquaredError>

Set the value of s2

§Example
use rv::dist::NormalInvChiSquared;

let mut nix = NormalInvChiSquared::new(0.0, 1.2, 2.3, 3.4).unwrap();
assert_eq!(nix.s2(), 3.4);

nix.set_s2(4.3).unwrap();
assert_eq!(nix.s2(), 4.3);

Will error for invalid values

assert!(nix.set_s2(2.1).is_ok());

// must be greater than zero
assert!(nix.set_s2(0.0).is_err());
assert!(nix.set_s2(-1.0).is_err());


assert!(nix.set_s2(std::f64::INFINITY).is_err());
assert!(nix.set_s2(std::f64::NEG_INFINITY).is_err());
assert!(nix.set_s2(std::f64::NAN).is_err());
Source

pub fn set_s2_unchecked(&mut self, s2: f64)

Set the value of s2 without input validation

Source

pub fn scaled_inv_x2(&self) -> &ScaledInvChiSquared

Trait Implementations§

Source§

impl Clone for NormalInvChiSquared

Source§

fn clone(&self) -> NormalInvChiSquared

Returns a duplicate 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<f64, Gaussian> for NormalInvChiSquared

Source§

type Posterior = NormalInvChiSquared

Type of the posterior distribution
Source§

type LnMCache = f64

Type of the ln_m cache
Source§

type LnPpCache = (GaussianSuffStat, f64)

Type of the ln_pp cache
Source§

fn posterior( &self, x: &DataOrSuffStat<'_, f64, Gaussian>, ) -> NormalInvChiSquared

Computes the posterior distribution from the data
Source§

fn ln_m_cache( &self, ) -> <NormalInvChiSquared as ConjugatePrior<f64, Gaussian>>::LnMCache

Compute the cache for the log marginal likelihood.
Source§

fn ln_m_with_cache( &self, cache: &<NormalInvChiSquared 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>, ) -> <NormalInvChiSquared 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: &<NormalInvChiSquared 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

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 Debug for NormalInvChiSquared

Source§

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

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

impl Display for NormalInvChiSquared

Source§

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

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

impl GewekeTestable<Gaussian, f64> for NormalInvChiSquared

Source§

fn prior_draw<R>(&self, rng: &mut R) -> Gaussian
where R: Rng,

Source§

fn update_params<R>(&self, data: &[f64], rng: &mut R) -> Gaussian
where R: Rng,

Source§

fn geweke_stats(&self, fx: &Gaussian, xs: &[f64]) -> BTreeMap<String, f64>

Source§

impl PartialEq for NormalInvChiSquared

Source§

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

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

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

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Rv<Gaussian> for NormalInvChiSquared

Source§

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

Probability function Read more
Source§

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

Single draw from the Rv Read more
Source§

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

Probability function Read more
Source§

fn sample<R>(&self, n: usize, rng: &mut R) -> Vec<X>
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 = X> + 'r>
where R: Rng,

Create a never-ending iterator of samples Read more

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§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. 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

Source§

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,

Source§

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§

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>,

Source§

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>,

Source§

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> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

Source§

impl<T> SendAlias for T

Source§

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

Source§

impl<T> SyncAlias for T