Postprocessing MCMC output
- Suppose we have a sample \{ \theta_t \}_{t=1}^T obtained from MCMC
- Assume everything checks out in terms of convergence, so \{ \theta_t \}_{t=1}^T \sim p(\theta | Y)
- Estimating posterior summaries? Use the MCMC sample
- Example. Estimate Pr(\theta > 0.9 | Y) using MCMC output:
\hat{Pr}(\theta > 0.9 | Y) = \frac{\sum_{t}^{T} 1_{\{\theta_t > 0.9\} }}{T}
- In R,
mean(theta_mcmc_sample > 0.9)
- Notice Pr(\theta > 0.9 | Y) = E(1_{ \{ \theta > 0.9 \} } | Y) and we are computing this expectation via a sample mean
- This is just like any Monte Carlo approximation