Skip to content

Commit

Permalink
bug fix with sd->sigma
Browse files Browse the repository at this point in the history
  • Loading branch information
hposborn committed Jul 8, 2024
1 parent 6c7722d commit c11b1ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MonoTools/fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,7 @@ def init_pymc(self,ld_mult=1.5):
tdursigma=0.25*self.planets[pl]['tdur'] if 'tdur_err' not in self.planets[pl] else self.planets[pl]['tdur_err']
tdurs[pl] = pm.TruncatedNormal("tdur_"+pl,
mu=self.planets[pl]['tdur'],
sigma=tdursd,
sigma=tdursigma,
lower=0.33*self.planets[pl]['tdur'],
upper=3*self.planets[pl]['tdur'],
initval=self.planets[pl]['tdur'])
Expand Down

0 comments on commit c11b1ce

Please sign in to comment.