I think I found an issue on Chapter 11 - Propensity Score. The interpretation of the intervention coefficient is incorrect.
The estimated values for smf.ols("achievement_score ~ intervention", data=data).fit().summary().tables[1] are -0.1538 for the intercept and 0.4723 for the intervention.
I believe the following sentence is incorrect.
Simply comparing those with and without the intervention, we can see that the treated have an achievement score that is, on average, 0.3185 (0.4723 - 0.1538) higher than the untreated.
If I'm not mistaken, the Expected Value for the control group is -0.1538, while the Expected Value for the treatment group is -0.1538 + 0.4723. Therefore, the difference in Expected Outcomes is -0.1538 + 0.4723 - (-0.1538) = 0.4723.
I think I found an issue on Chapter 11 - Propensity Score. The interpretation of the
intervention
coefficient is incorrect.The estimated values for
smf.ols("achievement_score ~ intervention", data=data).fit().summary().tables[1]
are-0.1538
for the intercept and0.4723
for the intervention.I believe the following sentence is incorrect.
If I'm not mistaken, the Expected Value for the control group is
-0.1538
, while the Expected Value for the treatment group is-0.1538 + 0.4723
. Therefore, the difference in Expected Outcomes is-0.1538 + 0.4723 - (-0.1538) = 0.4723
.