Hi everyone,
I am working on a project using propensity score matching, via the teffects command in Stata 15. My data is from a survey of respondents in 8 countries. I am using the following basic notation for teffects:
I restrict the treatment as there are people who do not use the underlying technology at all (treatment = 1) and I am interested in exposure to an event on the technology, where treatment = 2 = no and treatment = 3 = yes.
The matching portion of my model includes a lot of dummy variables, not just the country list but also gender, do people own a smartphone, etc. Herein lies my question: should I use factor variable notation (i.e. i.varname) on the variable matching portion of the model.
This choice seems to have has material implications for the estimation of the ATE.
For the model using factor notation, I get the following output:
Doing the same without factor variable notation for the matching variables returns the following:
The number of observations and matches remains the same, but there are pretty big differences in terms of the 95 percent CI and ATE across these two models, suggesting that there might be a correct way forward here but I am not clear from the manual or the Stata YouTube Channel videos that I have watched.
Thanks for your time, all.
Sincerely,
Eric J
I am working on a project using propensity score matching, via the teffects command in Stata 15. My data is from a survey of respondents in 8 countries. I am using the following basic notation for teffects:
Code:
teffects psmatch (Outcome) (Treatment $Demo_list_vars $Other_Demo_Vars $Perception_list_vars i.country, logit) if treatment!=1
The matching portion of my model includes a lot of dummy variables, not just the country list but also gender, do people own a smartphone, etc. Herein lies my question: should I use factor variable notation (i.e. i.varname) on the variable matching portion of the model.
This choice seems to have has material implications for the estimation of the ATE.
For the model using factor notation, I get the following output:
Treatment-effects estimation Number of obs = 6,650
Estimator : propensity-score matching Matches: requested = 1
Outcome model : matching min = 1
Treatment model: logit max = 2
---------------------------------------------------------------------------------------
| AI Robust
Outcome | Coef. Std. Err. z P>|z| [95% Conf. Interval]
----------------------+----------------------------------------------------------------
ATE |
(yes vs No) | .2606015 .0363096 7.18 0.000 .189436 .331767
---------------------------------------------------------------------------------------
Estimator : propensity-score matching Matches: requested = 1
Outcome model : matching min = 1
Treatment model: logit max = 2
---------------------------------------------------------------------------------------
| AI Robust
Outcome | Coef. Std. Err. z P>|z| [95% Conf. Interval]
----------------------+----------------------------------------------------------------
ATE |
(yes vs No) | .2606015 .0363096 7.18 0.000 .189436 .331767
---------------------------------------------------------------------------------------
Treatment-effects estimation Number of obs = 6,650
Estimator : propensity-score matching Matches: requested = 1
Outcome model : matching min = 1
Treatment model: logit max = 2
---------------------------------------------------------------------------------------
| AI Robust
Outcome | Coef. Std. Err. z P>|z| [95% Conf. Interval]
----------------------+----------------------------------------------------------------
ATE |
(yes vs No) | .2065414 .035904 5.75 0.000 .1361707 .276912
---------------------------------------------------------------------------------------
Estimator : propensity-score matching Matches: requested = 1
Outcome model : matching min = 1
Treatment model: logit max = 2
---------------------------------------------------------------------------------------
| AI Robust
Outcome | Coef. Std. Err. z P>|z| [95% Conf. Interval]
----------------------+----------------------------------------------------------------
ATE |
(yes vs No) | .2065414 .035904 5.75 0.000 .1361707 .276912
---------------------------------------------------------------------------------------
Thanks for your time, all.
Sincerely,
Eric J
Comment