pub struct ParamDiagnostics {
pub name: String,
pub mean: f64,
pub std: f64,
pub hdi_3: f64,
pub hdi_97: f64,
pub ess_bulk: f64,
pub ess_tail: f64,
pub r_hat: f64,
pub mcse_mean: f64,
}Expand description
MCMC diagnostic computations: R-hat, ESS, MCSE, quantiles.
All algorithms follow the definitions in: Vehtari et al. (2021) “Rank-normalization, folding, and localization: An improved R-hat for assessing convergence of MCMC” Per-parameter diagnostic summary.
Fields§
§name: String§mean: f64§std: f64§hdi_3: f64§hdi_97: f64§ess_bulk: f64§ess_tail: f64§r_hat: f64§mcse_mean: f64Trait Implementations§
Source§impl Clone for ParamDiagnostics
impl Clone for ParamDiagnostics
Source§fn clone(&self) -> ParamDiagnostics
fn clone(&self) -> ParamDiagnostics
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 moreAuto Trait Implementations§
impl Freeze for ParamDiagnostics
impl RefUnwindSafe for ParamDiagnostics
impl Send for ParamDiagnostics
impl Sync for ParamDiagnostics
impl Unpin for ParamDiagnostics
impl UnsafeUnpin for ParamDiagnostics
impl UnwindSafe for ParamDiagnostics
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 more