We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b68cbbc commit 5f14139Copy full SHA for 5f14139
skpro/distributions/burr_iii.py
@@ -60,11 +60,11 @@ def _mean(self):
60
scale = self._bc_params["scale"]
61
return burr12.mean(c, 1, scale=scale)
62
63
-
64
def _var(self):
65
c = self._bc_params["c"]
66
67
import numpy as np
+
68
v = burr12.var(c, 1, scale=scale)
69
# Match scipy: if nan, return nan; if negative/overflow, return inf
70
if np.isnan(v):
0 commit comments