diff --git a/docs/make.jl b/docs/make.jl index 470d110..c88589b 100644 --- a/docs/make.jl +++ b/docs/make.jl @@ -4,7 +4,9 @@ makedocs(sitename="SynthControl", pages = ["Home" => "index.md", "Methods" => [ "SimpleSCM" => "methods/SimpleSCM.md" - ]]) + "ADH2010" => "methods/ADH2010.md" + ] + ]) deploydocs( repo = "github.com/nilshg/SynthControl.jl.git", diff --git a/docs/src/index.md b/docs/src/index.md index fdd219c..8e2fbcf 100644 --- a/docs/src/index.md +++ b/docs/src/index.md @@ -15,7 +15,7 @@ implementation status | Estimator | Point estimate | Covariates | Standard Errors | Reference implementation | |--------------|:----:|:----:|:-----:|------| | Simple SCM | 🟢 | 🟥 | 🟥 | None | -| ADH2011 | 🟡 | 🟥 | 🟥 | None | +| ADH2010 | 🟡 | 🟥 | 🟥 | None | | SyntheticDiD | 🟢 | 🟥 | 🟡 | [synthdid (R)](https://github.com/synth-inference/synthdid) | | PenalizedSCM | 🟥 | 🟥 | 🟥 | [pensynth (R)](https://github.com/jeremylhour/pensynth) | | AugmentedSCM | 🟥 | 🟥 | 🟥 | [augsynth (R)](https://github.com/ebenmichael/augsynth) | @@ -30,7 +30,7 @@ much welcome. * Package design * Available estimators * SimpleSCM - * ADH2011 + * ADH2010 * SyntheticDiD * PenalizedSCM * AugmentedSCM diff --git a/docs/src/methods/ADH2010.md b/docs/src/methods/ADH2010.md new file mode 100644 index 0000000..5548514 --- /dev/null +++ b/docs/src/methods/ADH2010.md @@ -0,0 +1,18 @@ +## Abadie, Diamond and Hainmüller (2010) Synthetic Control Model + +The `ADH2011` model is in some sense the canonical Synthetic Control Model. It is set out in +[Abadie, Diamond and Hainmüller (2010, +JASSA)](https://www.tandfonline.com/doi/abs/10.1198/jasa.2009.ap08746)[^1], which estimates the +effects of proposition 99, a change to tobacco advertising rules in California, on smoking rates in +the state. + +The method was initially introduced in [Abadie and Gardeazabal (2003)](https://www.aeaweb.org/articles?id=10.1257/000282803321455188)[^2]. + +[^1]: Abadie, A., Diamond, A., and Hainmüller, J. (2010): *Synthetic Control Methods for Comparative + Case Studies: Estimating the Effect of California’s Tobacco Control Program*, American Journal + of Political Science, Vol. 59(2), Pp. 495-510 +[^2]: Abadie, A., and Gardeazabal, J. (2003): *The Economic Cost of Conflict: A Case Study of the + Basque Country*, American Economic Review, Vol. 93(1), Pp. 113-132 + + +