Hi, all.
I am trying to use propensity score matching(PSM) and coarsened exact matching methods to obtain ATT( average treatment effect on treated) of quantile expenditure.
my PSM codes are as below:
1.Q1: psmatch2 sampleb `expcova' if exp_all4q==1, outcome(exp_all) n(1) ate ties logit common
2.Q2: psmatch2 sampleb `expcova' if exp_all4q==2, outcome(exp_all) n(1) ate ties logit common
3.Q3: psmatch2 sampleb `expcova' if exp_all4q==3, outcome(exp_all) n(1) ate ties logit common
4.Q4: psmatch2 sampleb `expcova' if exp_all4q==4, outcome(exp_all) n(1) ate ties logit common
and the ATTs are 552.28, 874.18, 1946.76, 7887.9 respectively. They are all statistically significant, while most covariates are not.
My question is, I am not sure if I can just directly compare above ATTs. if I can't then, are there any good suggestions?
Cause I have tried dummy method as this link suggests: https://stats.idre.ucla.edu/stata/fa...r-more-groups/
and I also tried command suest, but it seems they are all not working.
Thank you in advance.
I am trying to use propensity score matching(PSM) and coarsened exact matching methods to obtain ATT( average treatment effect on treated) of quantile expenditure.
my PSM codes are as below:
1.Q1: psmatch2 sampleb `expcova' if exp_all4q==1, outcome(exp_all) n(1) ate ties logit common
2.Q2: psmatch2 sampleb `expcova' if exp_all4q==2, outcome(exp_all) n(1) ate ties logit common
3.Q3: psmatch2 sampleb `expcova' if exp_all4q==3, outcome(exp_all) n(1) ate ties logit common
4.Q4: psmatch2 sampleb `expcova' if exp_all4q==4, outcome(exp_all) n(1) ate ties logit common
and the ATTs are 552.28, 874.18, 1946.76, 7887.9 respectively. They are all statistically significant, while most covariates are not.
My question is, I am not sure if I can just directly compare above ATTs. if I can't then, are there any good suggestions?
Cause I have tried dummy method as this link suggests: https://stats.idre.ucla.edu/stata/fa...r-more-groups/
and I also tried command suest, but it seems they are all not working.
Thank you in advance.
Comment