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.
2 parents 28aa04c + 9930efa commit b82011fCopy full SHA for b82011f
causal_testing/testing/causal_test_result.py
@@ -92,7 +92,7 @@ def ci_valid(self) -> bool:
92
def summary(self):
93
"""Summarise the causal test result as an intuitive sentence."""
94
print(
95
- f"The causal effect of changing {self.estimator.treatment[0]} = {self.estimator.control_value} to "
96
- f"{self.estimator.treatment[0]}' = {self.estimator.treatment_value} is {self.test_value.value}"
+ f"The causal effect of changing {self.estimator.treatment} = {self.estimator.control_value} to "
+ f"{self.estimator.treatment}' = {self.estimator.treatment_value} is {self.test_value.value}"
97
f"(95% confidence intervals: {self.confidence_intervals})."
98
)
0 commit comments