We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 918f1af commit df5481dCopy full SHA for df5481d
pymc3/distributions/continuous.py
@@ -2655,17 +2655,8 @@ def logcdf(self, value):
2655
tt.log(tt.gammaincc(alpha, beta / value)),
2656
value >= 0,
2657
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))
+ beta > 0,
+ )
2669
2670
2671
class ChiSquared(Gamma):
0 commit comments