I am implementing the following routine found in psmath2 help file because I have few variables that I need to exact match with.
g att = .
egen g = group(groupvars)
levels g, local(gr)
qui foreach j of local gr {
psmatch2 treatvar varlist if g==`j', out(outvar)
replace att = r(att) if g==`j'
}
sum att
My question is that I don't see the ATT table in the output. How can I recover the table like below that is available when you implement psmatch2 without exact match:
Variable Sample | Treated | Controls Difference | S.E. | T | stat |
emp_grwth15 Unmatched | 91.9953488 | 90.9081616 -1.08718723 | 79.4846558 | 0.01 | |
ATT | 91.9953488 | 94.9348837 2.93953488 | 36.0883425 | 0.08 | |
Note: S.E. does not take into | account that | the propensity score is | estimated. | ||
Thank you
Anil
0 Response to Matching within strata with PSMatch2
Post a Comment