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 57372cc + b82011f commit 310c481Copy full SHA for 310c481
causal_testing/testing/causal_test_result.py
@@ -93,7 +93,7 @@ def ci_valid(self) -> bool:
93
def summary(self):
94
"""Summarise the causal test result as an intuitive sentence."""
95
print(
96
- f"The causal effect of changing {self.estimator.treatment[0]} = {self.estimator.control_value} to "
97
- 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}"
98
f"(95% confidence intervals: {self.confidence_intervals})."
99
)
0 commit comments