Skip to content

Commit

Permalink
Fix corner issue
Browse files Browse the repository at this point in the history
  • Loading branch information
pavolgaj committed Mar 16, 2024
1 parent 66e61e4 commit 1a05823
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OCFit/info_mc.py
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ def Corner(self,params=None):
i=self.pars.index(p)
values.append(np.median(self.flat[:,i]))
tr.append(self.flat[:,i])
fig=corner.corner(np.array(tr).transpose(),labels=params,truths=values,quantiles=[1-0.6827,0.6827],show_titles=True)
fig=corner.corner(np.array(tr).transpose(),labels=params,truths=values,quantiles=[1-0.6827,0.5,0.6827],show_titles=True)
return fig

def Hist(self,param,new_fig=True,label=True):
Expand Down

0 comments on commit 1a05823

Please sign in to comment.