I would like to get a matched sample by running the code below
Is this the correct code to do a one to one matching using logit regression on common support?
If so, why do I get the below results.
This gives more than 2000 observations.
This gives more than 7000 observations.
Shouldn't they output the same number of observations if it is a one to one matching?
Code:
psmatch2 y x1 x2, logit common
If so, why do I get the below results.
Code:
count if _nn == 1
Code:
count if _nn == 0
Shouldn't they output the same number of observations if it is a one to one matching?
Comment