You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`post_periods`| list | List of post-treatment period values |
1887
+
1888
+
Note: TROP infers treatment periods from the treatment indicator column. The treatment column should be an absorbing state indicator where D=1 for all periods during and after treatment starts.
1884
1889
1885
1890
### TROPResults
1886
1891
@@ -1906,8 +1911,8 @@ TROP(
1906
1911
|`factor_matrix`| Low-rank factor matrix L (n_periods x n_units) |
1907
1912
|`effective_rank`| Effective rank of factor matrix |
1908
1913
|`loocv_score`| LOOCV score for selected parameters |
1909
-
|`pre_periods`|List of pre-treatment periods |
1910
-
|`post_periods`|List of post-treatment periods |
1914
+
|`n_pre_periods`|Number of pre-treatment periods |
1915
+
|`n_post_periods`|Number of post-treatment periods |
1911
1916
|`variance_method`| Variance estimation method |
1912
1917
|`bootstrap_distribution`| Bootstrap distribution (if bootstrap) |
Copy file name to clipboardExpand all lines: ROADMAP.md
+11Lines changed: 11 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -44,6 +44,17 @@ Two-stage approach gaining traction in applied work. First residualizes outcomes
44
44
45
45
**Reference**: Gardner (2022). *Working Paper*.
46
46
47
+
### Stacked Difference-in-Differences
48
+
49
+
An intuitive approach that explicitly constructs sub-experiments for each treatment cohort, avoiding forbidden comparisons.
50
+
51
+
- Creates separate datasets per cohort with valid controls only
52
+
- Stacks sub-experiments and applies corrective sample weights
53
+
- Returns variance-weighted ATT with proper compositional balance
54
+
- Conceptually simpler alternative to aggregation-based methods
55
+
56
+
**Reference**: [Wing, Freedman & Hollingsworth (2024)](https://www.nber.org/papers/w32054). *NBER Working Paper 32054*. Stata: `STACKDID`.
57
+
47
58
### Staggered Triple Difference (DDD)
48
59
49
60
Extend the existing `TripleDifference` estimator to handle staggered adoption settings. The current implementation handles 2-period DDD; this extends to multi-period designs.
0 commit comments