Dear Statalisters,
I am playing around with psmatch2 (treatment effects propensity score matching) and I have got the output 1 below — so far, so good.
Now I did not quite understand what the "Unmatched t-stat" line could stand for, and I came across this excellent statalist post from Ariel Linden, saying
I understand this as a naive t-test. As you can imagine, I instantly and eagerly checked it up, but I found the t-test gave quite a different t-stat (output 2). Uh oh.
The Question : Does anybody have a specific idea of what the first line t-stat (red font) in the output stands for ?
Thanks a ton, great day to all,
Joseph
Output 1
Output 2
I am playing around with psmatch2 (treatment effects propensity score matching) and I have got the output 1 below — so far, so good.
Now I did not quite understand what the "Unmatched t-stat" line could stand for, and I came across this excellent statalist post from Ariel Linden, saying
The first line indicates what the unmatched/unadjusted values look like
(ie., comparison of all the treated to all of the untreated).
(ie., comparison of all the treated to all of the untreated).
The Question : Does anybody have a specific idea of what the first line t-stat (red font) in the output stands for ?
Thanks a ton, great day to all,
Joseph
Output 1
Code:
. psmatch2 treatvar covariate1, kernel out(outvar) (Probit blabla omitted) ---------------------------------------------------------------------------------------- Variable Sample | Treated Controls Difference S.E. T-stat ----------------------------+----------------------------------------------------------- outvar Unmatched | 9.23717948 9.90951236 -.672332875 .365221621 -1.84 <-- ? ATT | 9.23717948 9.81980187 -.582622388 .34449081 -1.69 ----------------------------+-----------------------------------------------------------
Code:
. ttest outvar, by(treatvar)
Two-sample t test with equal variances
------------------------------------------------------------------------------
Group | Obs Mean Std. Err. Std. Dev. [95% Conf. Interval]
---------+--------------------------------------------------------------------
0 | 827 9.859381 .1282484 3.688116 9.60765 10.11111
1 | 127 9.360564 .3010767 3.392962 8.764742 9.956386
---------+--------------------------------------------------------------------
combined | 954 9.792977 .1182522 3.652443 9.560912 10.02504
---------+--------------------------------------------------------------------
diff | .498817 .3479066 -.1839354 1.181569
------------------------------------------------------------------------------
diff = mean(0) - mean(1) t = 1.4338 <-- != ± 1.84. Why ?
Ho: diff = 0 degrees of freedom = 952
Ha: diff < 0 Ha: diff != 0 Ha: diff > 0
Pr(T < t) = 0.9240 Pr(|T| > |t|) = 0.1520 Pr(T > t) = 0.0760
Comment