Dear all,
I am planning to use propensity score matching for my paper. I am a little bit confused as to what is the difference between pscore and psmatch.
I gathered some previous codes and information online. created global list (local would not work with my stata for some reason. it would work the fist time then when i run it again the second time it would not work)
I am not very certain what exactly am i doing here. is pscore after balance? and pre_probit what it was like before balance? Why do we perform pstest? and to do the next step nearest neighbor, radius, kernal and stratification which codes do i use? if you can guide me to the right direction on successfully using PSM i would be very grateful. Thank you.
I am planning to use propensity score matching for my paper. I am a little bit confused as to what is the difference between pscore and psmatch.
I gathered some previous codes and information online. created global list (local would not work with my stata for some reason. it would work the fist time then when i run it again the second time it would not work)
Code:
***treatment global TREAT treatment *** x-list ****** $TREAT $HH $GEO $HH_RESP $LAND $EDU $WATER
Code:
probit $TREAT $HH $GEO $HH_RESP $LAND $EDU $WATER
predict pre_probit, p
sum pre_probit
sum pre_probit if migrant == 1
sum pre_probit if migrant == 0
psmatch2 $TREAT $HH $GEO $HH_RESP $LAND $EDU $WATER
sum _pscore
sum _pscore if migrant == 1
sum _pscore if migrant == 0
I am not very certain what exactly am i doing here. is pscore after balance? and pre_probit what it was like before balance? Why do we perform pstest? and to do the next step nearest neighbor, radius, kernal and stratification which codes do i use? if you can guide me to the right direction on successfully using PSM i would be very grateful. Thank you.

Comment