Skip to content

Commit df5481d

Browse files
committed
formatting fixes
1 parent 918f1af commit df5481d

File tree

1 file changed

+2
-11
lines changed

1 file changed

+2
-11
lines changed

pymc3/distributions/continuous.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2655,17 +2655,8 @@ def logcdf(self, value):
26552655
tt.log(tt.gammaincc(alpha, beta / value)),
26562656
value >= 0,
26572657
alpha > 0,
2658-
beta > 0)
2659-
2660-
def _repr_latex_(self, name=None, dist=None):
2661-
if dist is None:
2662-
dist = self
2663-
beta = dist.beta
2664-
alpha = dist.alpha
2665-
name = r'\text{%s}' % name
2666-
return r'${} \sim \text{{InverseGamma}}(\mathit{{alpha}}={},~\mathit{{beta}}={})$'.format(name,
2667-
get_variable_name(alpha),
2668-
get_variable_name(beta))
2658+
beta > 0,
2659+
)
26692660

26702661

26712662
class ChiSquared(Gamma):

0 commit comments

Comments
 (0)