Skip to content

Commit b9514ce

Browse files
committed
Fix rounding for DiD results.
1 parent 2223fa0 commit b9514ce

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

causalpy/pymc_experiments.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -709,7 +709,7 @@ def summary(self, round_to=None) -> None:
709709
print(f"{self.expt_type:=^80}")
710710
print(f"Formula: {self.formula}")
711711
print("\nResults:")
712-
print(round_num(self._causal_impact_summary_stat(), round_to))
712+
print(self._causal_impact_summary_stat(round_to))
713713
self.print_coefficients(round_to)
714714

715715

docs/source/_static/interrogate_badge.svg

Lines changed: 3 additions & 3 deletions
Loading

0 commit comments

Comments
 (0)