Skip to content

09. Bayesian Analysis, Plotting and MCMC Processor

Kamil edited this page Nov 20, 2024 · 13 revisions

Introduction

MCMC Processor is a class responsible for processing MCMC and producing validation plots.

Posteriors

Marginalised posterior is the standard output of MCMC. PDF is mean, Gauss indicates gaussian fit to posterior while HPD (Highest Posterior Denstiity Point). In most cases paramter posteriors are Gaussian then all 3 values would give the same result. However, the strength of MCMC is that there is no assumption about gaussiantiy and it can handle non-Gaussian parameters. image

Credible Intervals

This plot helps to tell which values are excluded based on X-credible intervals image

2D Posteriros

It is possible to produce 2D posteriors. They are very useful to identify if parameters are correlated or not. In this example, there are strong correlations. image

This can take some time, though. There are two ways: faster (using multithreading) but requiring lots of RAM or slower but without RAM requirements. Once you obtain 2D posteriors, you can produce multiple additional plots.

Credible Region

image

Correlation Matrix

Correlation matrix etc are calculated based on 2D Posteriros image image

Triangle plot

image

Violin plot

image

Bayes factor and Savage-Dickey

It is possible to obtain the Bayes factor for different hypothesis

  BayesFactor:
    # Goes as follows: ParamName Name[Model 1, Model 2], Model1[lower, upper ], Model2[lower, upper ]
    - ["sin2th_23", ["LO", "UO"], [0, 0.5], [0.5, 1]]

or calculate savage Dickey, which is Bayes factor for point-like hypothesis

  SavageDickey:
    - ["Alpha_q3", 0.0001, [0, 1]]

Parameter Evolution

EB_dial

BiPolar plot

image