Skip to content
Snippets Groups Projects

Make the corner plots use 1, 2, and 3-sigma countours

Merged Gregory Ashton requested to merge fix-sigmas-in-corner into master
1 file
+ 2
1
Compare changes
  • Side-by-side
  • Inline
+ 2
1
@@ -218,7 +218,8 @@ class Result(dict):
bins=50, smooth=0.9, label_kwargs=dict(fontsize=16),
title_kwargs=dict(fontsize=16), color='#0072C1',
truth_color='tab:orange', show_titles=True,
quantiles=[0.025, 0.975], levels=(0.39, 0.8, 0.97),
quantiles=[0.16, 0.84],
levels=(1-np.exp(-0.5), 1-np.exp(-2), 1-np.exp(-9/2.)),
plot_density=False, plot_datapoints=True, fill_contours=True,
max_n_ticks=3)
Loading