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
Copy file name to clipboardExpand all lines: docs/source/glossary.rst
-83Lines changed: 0 additions & 83 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -78,89 +78,6 @@ Glossary
78
78
A notation for describing statistical models :footcite:p:`wilkinson1973symbolic`.
79
79
80
80
81
-
References
82
-
----------
83
-
.. footbibliography::
84
-
Glossary
85
-
========
86
-
87
-
.. glossary::
88
-
:sorted:
89
-
90
-
ANCOVA
91
-
Analysis of covariance is a simple linear model, typically with one continuous predictor (the covariate) and a catgeorical variable (which may correspond to treatment or control group). In the context of this package, ANCOVA could be useful in pre-post treatment designs, either with or without random assignment. This is similar to the approach of difference in differences, but only applicable with a single pre and post treatment measure.
92
-
93
-
Average treatment effect
94
-
ATE
95
-
The average treatement effect across all units.
96
-
97
-
Average treatment effect on the treated
98
-
ATT
99
-
The average effect of the treatment on the units that recieved it. Also called Treatment on the treated.
100
-
101
-
Change score analysis
102
-
A statistical procedure where the outcome variable is the difference between the posttest and protest scores.
103
-
104
-
Comparative interrupted time-series
105
-
CITS
106
-
An interrupted time series design with added comparison time series observations.
107
-
108
-
Confound
109
-
Anything besides the treatment which varies across the treatment and control conditions.
110
-
111
-
Counterfactual
112
-
A hypothetical outcome that could or will occur under specific hypothetical circumstances.
113
-
114
-
Difference in differences
115
-
DiD
116
-
Analysis where the treatment effect is estimated as a difference between treatment conditions in the differences between pre-treatment to post treatment observations.
117
-
118
-
Interrupted time series design
119
-
ITS
120
-
A quasi-experimental design to estimate a treatment effect where a series of observations are collected before and after a treatment. No control group is present.
121
-
122
-
Non-equivalent group designs
123
-
NEGD
124
-
A quasi-experimental design where units are assigned to conditions non-randomly, and not according to a running variable (see Regression discontinuity design).
125
-
126
-
One-group posttest-only design
127
-
A design where a single group is exposed to a treatment and assessed on an outcome measure. There is no pretest measure or comparison group.
128
-
129
-
Panel data
130
-
Time series data collected on multiple units where the same units are observed at each time point.
131
-
132
-
Pretest-posttest design
133
-
A quasi-experimental design where the treatment effect is estimated by comparing an outcome measure before and after treatment.
134
-
135
-
Quasi-experiment
136
-
An empirical comparison used to estimate the effects of a treatment where units are not assigned to conditions at random.
137
-
138
-
Random assignment
139
-
Where units are assigned to conditions at random.
140
-
141
-
Randomized experiment
142
-
An emprical comparison used to estimate the effects of treatments where units are assigned to treatment conditions randomly.
143
-
144
-
Regression discontinuity design
145
-
A quasi–experimental comparison to estimate a treatment effect where units are assigned to treatment conditions based on a cut-off score on a quantitative assignment variable (aka running variable).
146
-
147
-
Sharp regression discontinuity design
148
-
A Regression discontinuity design where allocation to treatment or control is determined by a sharp threshold / step function.
149
-
150
-
Synthetic control
151
-
The synthetic control method is a statistical method used to evaluate the effect of an intervention in comparative case studies. It involves the construction of a weighted combination of groups used as controls, to which the treatment group is compared.
152
-
153
-
Treatment on the treated effect
154
-
TOT
155
-
The average effect of the treatment on the units that recieved it. Also called the average treatment effect on the treated (ATT).
156
-
157
-
Treatment effect
158
-
The difference in outcomes between what happened after a treatment is implemented and what would have happened (see Counterfactual) if the treatment had not been implemented, assuming everything else had been the same.
159
-
160
-
Wilkinson notation
161
-
A notation for describing statistical models :footcite:p:`wilkinson1973symbolic`.
Copy file name to clipboardExpand all lines: docs/source/notebooks/did_pymc_banks.ipynb
+1-24Lines changed: 1 addition & 24 deletions
Original file line number
Diff line number
Diff line change
@@ -7,11 +7,7 @@
7
7
"source": [
8
8
"# Banking dataset with a `pymc` model\n",
9
9
"\n",
10
-
":::{note}\n",
11
-
"This example is in-progress! Further elaboration and explanation will follow soon.\n",
12
-
":::\n",
13
-
"\n",
14
-
"This notebook analyses historic data on banking closures from [Richardson & Troost (2009)](http://masteringmetrics.com/wp-content/uploads/2015/02/Richardson_Troost_2009_JPE.pdf) and used as a case study for a difference in differences analysis in the [Mastering Metrics](http://www.masteringmetrics.com) book. Here, we replicate this analysis, but using Bayesian inference."
10
+
"This notebook analyses historic data on banking closures from {cite:t}`richardson2009monetary` and used as a case study for a difference in differences analysis in the excellent book [Mastering Metrics](http://www.masteringmetrics.com) {cite:p}`angrist2014mastering`. Here, we replicate this analysis, but using Bayesian inference."
15
11
]
16
12
},
17
13
{
@@ -539,25 +535,6 @@
539
535
"The only change here compared to the classic 2$\\times$2 DiD model above is the addition of a main effect of `year`. Because this is coded numerically (not categorically) this can capture any linear changes in the outcome variable over time."
540
536
]
541
537
},
542
-
{
543
-
"cell_type": "markdown",
544
-
"metadata": {},
545
-
"source": [
546
-
"We will use the formula: `bib ~ 1 + year + district*post_treatment` which equates to the following model of expected values:\n",
"The only change here compared to the classic 2$\\times$2 DiD model above is the addition of a main effect of `year`. Because this is coded numerically (not categorically) this can capture any linear changes in the outcome variable over time."
0 commit comments