Skip to content
Snippets Groups Projects
Commit 9296ecbe authored by Gregory Ashton's avatar Gregory Ashton
Browse files

Merge branch 'handle-nans-in-posterior-when-generating-marginals' into 'master'

If there are NaNs in the posterior, continue onward but print a message

See merge request lscsoft/bilby!312
parents 62d036ee f5bfa9a6
No related branches found
No related tags found
1 merge request!312If there are NaNs in the posterior, continue onward but print a message
Pipeline #42788 passed
......@@ -468,8 +468,14 @@ class Result(object):
logger.info('Plotting {} marginal distribution'.format(key))
label = self.get_latex_labels_from_parameter_keys([key])[0]
fig, ax = plt.subplots()
ax.hist(self.posterior[key].values, bins=bins, density=True,
histtype='step', cumulative=cumulative)
try:
ax.hist(self.posterior[key].values, bins=bins, density=True,
histtype='step', cumulative=cumulative)
except ValueError as e:
logger.info(
'Failed to generate 1d plot for {}, error message: {}'
.format(key, e))
return
ax.set_xlabel(label, fontsize=label_fontsize)
if truth is not None:
ax.axvline(truth, ls='-', color='orange')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment