File tree Expand file tree Collapse file tree 1 file changed +13
-10
lines changed
Expand file tree Collapse file tree 1 file changed +13
-10
lines changed Original file line number Diff line number Diff line change @@ -168,16 +168,19 @@ def effect_summary(
168168
169169 Examples
170170 --------
171- >>> import causalpy as cp
172- >>> # Interrupted Time Series
173- >>> result = cp.InterruptedTimeSeries(...)
174- >>> stats = result.effect_summary()
175- >>> print(stats.table)
176- >>> print(stats.text)
177- >>> # Difference-in-Differences
178- >>> result = cp.DifferenceInDifferences(...)
179- >>> stats = result.effect_summary()
180- >>> print(stats.table)
171+ Interrupted Time Series:
172+
173+ import causalpy as cp
174+ result = cp.InterruptedTimeSeries(...)
175+ stats = result.effect_summary()
176+ print(stats.table)
177+ print(stats.text)
178+
179+ Difference-in-Differences:
180+
181+ result = cp.DifferenceInDifferences(...)
182+ stats = result.effect_summary()
183+ print(stats.table)
181184 """
182185 # Validate model type
183186 if not isinstance (self .model , PyMCModel ):
You can’t perform that action at this time.
0 commit comments