Skip to content

Commit

Permalink
Quantiles set to 1-sigma (68%) around median.
Browse files Browse the repository at this point in the history
  • Loading branch information
garciafederico authored May 23, 2022
1 parent 0fe2820 commit 22fa9b4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tkXspecCorner.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ def UpdateCornerPlot(selectedTitles, contours, showTitles, showXYlabels, selecte
labels=selectedAltNames, label_kwargs={"fontsize": 'xx-small'},
titles=selectedAltNames, show_titles=showTitles, title_fmt=title_fmt, title_kwargs={"fontsize": 'xx-small'},
plot_datapoints=False, plot_density=True, plot_contours=contours, smooth=True,
quantiles=(0.14, 0.84), use_math_text=True, bins=bins, labelpad=labelpad)
quantiles=(0.16, 0.84), use_math_text=True, bins=bins, labelpad=labelpad)
else:
corner.corner(df, var_names=selectedTitles.values, filter_vars="like", fig=figcorner,
labels=[None for val in selectedTitles.values], label_kwargs={"fontsize": 'xx-small'},
titles=selectedAltNames, show_titles=showTitles, title_fmt=title_fmt, title_kwargs={"fontsize": 'xx-small'},
plot_datapoints=False, plot_density=True, plot_contours=contours, smooth=True,
quantiles=(0.14, 0.84), use_math_text=True, bins=bins, labelpad=labelpad)
quantiles=(0.16, 0.84), use_math_text=True, bins=bins, labelpad=labelpad)

figcorner.canvas.draw()
return
Expand Down

0 comments on commit 22fa9b4

Please sign in to comment.