Correct TFR plotting labels and widen sigma_v prior

This commit is contained in:
Deaglan Bartlett 2025-02-07 14:15:31 +01:00
parent dd60456580
commit e53735d211
6 changed files with 3 additions and 3 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 MiB

After

Width:  |  Height:  |  Size: 1.1 MiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 18 KiB

View file

@ -862,8 +862,8 @@ def process_mcmc_run(mcmc, param_labels, truths, true_vars):
axs3[0].errorbar(xtrue, xpred_median, yerr=[xpred_minus, xpred_plus], **plot_kwargs)
axs3[1].errorbar(xtrue, xpred_median - xtrue, yerr=[xpred_minus, xpred_plus], **plot_kwargs)
axs3[1].set_xlabel('True')
axs3[0].set_ylabel('True')
axs3[1].set_ylabel('True - Predicted')
axs3[0].set_ylabel('Predicted')
axs3[1].set_ylabel('Predicted - True')
xlim = axs3[0].get_xlim()
ylim = axs3[0].get_ylim()
axs3[0].plot(xlim, xlim, color='k', zorder=0)
@ -912,7 +912,7 @@ def main():
'b_TFR': [-10, -5],
'hyper_mean_eta': [hyper_eta_mu - 0.5, hyper_eta_mu + 0.5],
'hyper_mean_m':[mthresh - 5, mthresh + 5],
'sigma_v': [50, 300],
'sigma_v': [10, 3000],
}
initial = {
'alpha': alpha,

Binary file not shown.

Before

Width:  |  Height:  |  Size: 349 KiB

After

Width:  |  Height:  |  Size: 359 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 KiB

After

Width:  |  Height:  |  Size: 50 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 42 KiB

After

Width:  |  Height:  |  Size: 43 KiB