@@ -99,6 +99,11 @@ def print_coefficients(self, round_to=None) -> None:
99
99
... "progressbar": False
100
100
... }),
101
101
... )
102
+ <BLANKLINE>
103
+ <BLANKLINE>
104
+ <BLANKLINE>
105
+ <BLANKLINE>
106
+ <BLANKLINE>
102
107
>>> result.print_coefficients(round_to=1) # doctest: +NUMBER
103
108
Model coefficients:
104
109
Intercept 1, 94% HDI [1, 1]
@@ -157,6 +162,11 @@ class PrePostFit(ExperimentalDesign, PrePostFitDataValidator):
157
162
... }
158
163
... ),
159
164
... )
165
+ <BLANKLINE>
166
+ <BLANKLINE>
167
+ <BLANKLINE>
168
+ <BLANKLINE>
169
+ <BLANKLINE>
160
170
>>> result.summary(round_to=1) # doctest: +NUMBER
161
171
==================================Pre-Post Fit==================================
162
172
Formula: actual ~ 0 + a + g
@@ -383,6 +393,11 @@ class InterruptedTimeSeries(PrePostFit):
383
393
... }
384
394
... )
385
395
... )
396
+ <BLANKLINE>
397
+ <BLANKLINE>
398
+ <BLANKLINE>
399
+ <BLANKLINE>
400
+ <BLANKLINE>
386
401
"""
387
402
388
403
expt_type = "Interrupted Time Series"
@@ -418,6 +433,11 @@ class SyntheticControl(PrePostFit):
418
433
... }
419
434
... ),
420
435
... )
436
+ <BLANKLINE>
437
+ <BLANKLINE>
438
+ <BLANKLINE>
439
+ <BLANKLINE>
440
+ <BLANKLINE>
421
441
"""
422
442
423
443
expt_type = "Synthetic Control"
@@ -474,6 +494,11 @@ class DifferenceInDifferences(ExperimentalDesign, DiDDataValidator):
474
494
... }
475
495
... )
476
496
... )
497
+ <BLANKLINE>
498
+ <BLANKLINE>
499
+ <BLANKLINE>
500
+ <BLANKLINE>
501
+ <BLANKLINE>
477
502
"""
478
503
479
504
def __init__ (
@@ -765,6 +790,11 @@ class RegressionDiscontinuity(ExperimentalDesign, RDDataValidator):
765
790
... ),
766
791
... treatment_threshold=0.5,
767
792
... )
793
+ <BLANKLINE>
794
+ <BLANKLINE>
795
+ <BLANKLINE>
796
+ <BLANKLINE>
797
+ <BLANKLINE>
768
798
"""
769
799
770
800
def __init__ (
@@ -1174,6 +1204,10 @@ class PrePostNEGD(ExperimentalDesign, PrePostNEGDDataValidator):
1174
1204
... }
1175
1205
... )
1176
1206
... )
1207
+ <BLANKLINE>
1208
+ <BLANKLINE>
1209
+ <BLANKLINE>
1210
+ <BLANKLINE>
1177
1211
>>> result.summary(round_to=1) # doctest: +NUMBER
1178
1212
==================Pretest/posttest Nonequivalent Group Design===================
1179
1213
Formula: post ~ 1 + C(group) + pre
@@ -1404,6 +1438,8 @@ class InstrumentalVariable(ExperimentalDesign, IVDataValidator):
1404
1438
... formula=formula,
1405
1439
... model=InstrumentalVariableRegression(sample_kwargs=sample_kwargs),
1406
1440
... )
1441
+ <BLANKLINE>
1442
+ <BLANKLINE>
1407
1443
"""
1408
1444
1409
1445
def __init__ (
0 commit comments