diff-diff 1.2.1__py3-none-any.whl → 1.3.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
diff_diff/__init__.py CHANGED
@@ -81,6 +81,11 @@ from diff_diff.sun_abraham import (
81
81
  SunAbraham,
82
82
  SunAbrahamResults,
83
83
  )
84
+ from diff_diff.triple_diff import (
85
+ TripleDifference,
86
+ TripleDifferenceResults,
87
+ triple_difference,
88
+ )
84
89
  from diff_diff.utils import (
85
90
  WildBootstrapResults,
86
91
  check_parallel_trends,
@@ -107,6 +112,7 @@ __all__ = [
107
112
  "SyntheticDiD",
108
113
  "CallawaySantAnna",
109
114
  "SunAbraham",
115
+ "TripleDifference",
110
116
  # Bacon Decomposition
111
117
  "BaconDecomposition",
112
118
  "BaconDecompositionResults",
@@ -123,6 +129,8 @@ __all__ = [
123
129
  "GroupTimeEffect",
124
130
  "SunAbrahamResults",
125
131
  "SABootstrapResults",
132
+ "TripleDifferenceResults",
133
+ "triple_difference",
126
134
  # Visualization
127
135
  "plot_event_study",
128
136
  "plot_group_effects",