Skip to content

Commit 42a6626

Browse files
committed
remove commented out code
1 parent aef072c commit 42a6626

File tree

1 file changed

+0
-14
lines changed

1 file changed

+0
-14
lines changed

causalpy/pymc_experiments.py

Lines changed: 0 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -129,20 +129,6 @@ def print_coefficients(self, round_to=None) -> None:
129129
f" {name: <{max_label_length}}\t{round_num(coeff_samples.mean().data, round_to)}, 94% HDI [{round_num(coeff_samples.quantile(0.03).data, round_to)}, {round_num(coeff_samples.quantile(1-0.03).data, round_to)}]" # noqa: E501
130130
)
131131

132-
# # Note: f"{name: <30}" pads the name with spaces so that we have alignment of
133-
# # the stats despite variable names of different lengths
134-
# for name in self.labels:
135-
# coeff_samples = coeffs.sel(coeffs=name)
136-
# print(
137-
# f"{name: <30}{round_num(coeff_samples.mean().data, round_to)}, 94% HDI [{round_num(coeff_samples.quantile(0.03).data, round_to)}, {round_num(coeff_samples.quantile(1-0.03).data, round_to)}]" # noqa: E501
138-
# )
139-
# # add coeff for measurement std
140-
# coeff_samples = az.extract(self.model.idata.posterior, var_names="sigma")
141-
# name = "sigma"
142-
# print(
143-
# f"{name: <30}{round_num(coeff_samples.mean().data, round_to)}, 94% HDI [{round_num(coeff_samples.quantile(0.03).data, round_to)}, {round_num(coeff_samples.quantile(1-0.03).data, round_to)}]" # noqa: E501
144-
# )
145-
146132

147133
class PrePostFit(ExperimentalDesign, PrePostFitDataValidator):
148134
"""

0 commit comments

Comments
 (0)