File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,6 @@ class Positive(CausalTestOutcome):
40
40
"""An extension of TestOutcome representing that the expected causal effect should be positive."""
41
41
42
42
def apply (self , res : CausalTestResult ) -> bool :
43
- # TODO: confidence intervals?
44
43
if res .test_value .type == "ate" :
45
44
return res .test_value .value > 0
46
45
if res .test_value .type == "risk_ratio" :
@@ -52,7 +51,6 @@ class Negative(CausalTestOutcome):
52
51
"""An extension of TestOutcome representing that the expected causal effect should be negative."""
53
52
54
53
def apply (self , res : CausalTestResult ) -> bool :
55
- # TODO: confidence intervals?
56
54
if res .test_value .type == "ate" :
57
55
return res .test_value .value < 0
58
56
if res .test_value .type == "risk_ratio" :
You can’t perform that action at this time.
0 commit comments