EventStudy.effect_summary#

EventStudy.effect_summary(*, direction='increase', alpha=0.05, min_effect=None, include_pretrend_check=True, **kwargs)[source]#

Generate a decision-ready summary of causal effects for Event Study.

Returns the event-time coefficients table with a prose summary describing the pre-treatment trends (parallel trends check) and post-treatment effects.

Parameters:
  • direction ({"increase", "decrease", "two-sided"}, default="increase") – Direction for tail probability calculation (PyMC only, ignored for OLS).

  • alpha (float, default=0.05) – Significance level for HDI/CI intervals (1-alpha confidence level).

  • min_effect (float, optional) – Region of Practical Equivalence (ROPE) threshold (PyMC only, ignored for OLS).

  • include_pretrend_check (bool, default=True) – Whether to include parallel trends analysis in prose summary.

  • **kwargs (Any) – Additional keyword arguments (currently unused, for API consistency).

Returns:

Object with .table (DataFrame) and .text (str) attributes

Return type:

EffectSummary