Hi Gabriele,
Here are key steps you can run for propensity score matching:
1. Run the regression to predict your treatment, receive the propensity score
2. Run PSM to get the common support region and check the balance of your covariates
3. Run regression of your outcome variables on the common support region from step 2
Hope it helps
Here are key steps you can run for propensity score matching:
1. Run the regression to predict your treatment, receive the propensity score
2. Run PSM to get the common support region and check the balance of your covariates
3. Run regression of your outcome variables on the common support region from step 2
Code:
probit treat x1 x2 predict ps, pr su ps if e(sample) * Matching by nearest neighbor and caliper psmatch2 treat, pscore(ps) neighbor(1) noreplacement descending * Matching by radius psmatch2 treat, pscore(ps) radius caliper(0.01) out(outcome_var)
Comment