Hello,
I'm using Stata 14 and have two problems when I use the "ate" option and omit the option from psmatch2.
When I run the psmatch2 command using the following options ", logit noreplacement common neighbor(1) ate" I get an equal number of treated and untreated participants "on support" (as expected):

However, Stata does not display the SE or the t-statistic for the ATT or ATE:
When I remove the ate option: ", logit noreplacement common neighbor(1)", the number of untreated participants is no longer equal to the number of treated participants, even when specifying neighbor(1):

However, the SE and t-statistic for the ATT are displayed:
Why does omitting the "ate" option create an unequal number of untreated and treated participants, even when specifying neighbor(1)? Am I able to limit the number of untreated participants to the number of treated participants and still get the standard error and t-statistic for the ATT?
Thank you,
Amanda Johnson
I'm using Stata 14 and have two problems when I use the "ate" option and omit the option from psmatch2.
When I run the psmatch2 command using the following options ", logit noreplacement common neighbor(1) ate" I get an equal number of treated and untreated participants "on support" (as expected):
Code:
psmatch2 ever_ecigw1 $covars_0 if wave1==1 & wave2==1 & sample_0==1, out(nvr2evr_cigsw2) logit noreplacement common neighbor(1) ate
However, Stata does not display the SE or the t-statistic for the ATT or ATE:
When I remove the ate option: ", logit noreplacement common neighbor(1)", the number of untreated participants is no longer equal to the number of treated participants, even when specifying neighbor(1):
Code:
psmatch2 ever_ecigw1 $covars_0 if wave1==1 & wave2==1 & sample_0==1, out(nvr2evr_cigsw2) logit noreplacement common neighbor(1)
However, the SE and t-statistic for the ATT are displayed:
Why does omitting the "ate" option create an unequal number of untreated and treated participants, even when specifying neighbor(1)? Am I able to limit the number of untreated participants to the number of treated participants and still get the standard error and t-statistic for the ATT?
Thank you,
Amanda Johnson
Comment