coolest.template.classes.probabilities#
Classes#
Object that holds low order statistics of the posterior distribution |
|
Generic class for a prior distribution that can be assigned |
|
Gaussian prior. |
|
Log-Normal prior. |
|
Uniform prior. |
Module Contents#
- class PosteriorStatistics(mean=None, median=None, percentile_16th=None, percentile_84th=None)[source]#
Object that holds low order statistics of the posterior distribution of the parameter.
- Parameters:
mean (float, optional) – Mean of the distribution, by default None
median (float, optional) – Median of the distribution, by default None
percentile_16th (float, optional) – 16th percentile of the distribution, by default None
percentile_84th (float, optional) – 84th percentile of the distribution, by default None
- class Prior(ptype=None, **kwargs)[source]#
Generic class for a prior distribution that can be assigned to a parameter.
- Parameters:
ptype (str, optional) – Type of prior, typically class name of one of the Prior class defined in this module, by default None
- class GaussianPrior(mean=None, width=None)[source]#
Gaussian prior.
- Parameters:
mean (float, optional) – Mean value, by default None
width (float, optional) – Width (standard deviation), by default None