Hello all,
I've never had a problem with this code, but this time I'm using it on another dataset and it doesn't seem to be generating the results
AIM: I would like to create a graph showing post-matching results (normally demaracted with a X)
As you can see the X is missing in my graph

Code used:
Can you please let me know what I'm doing wrong?
I've never had a problem with this code, but this time I'm using it on another dataset and it doesn't seem to be generating the results
AIM: I would like to create a graph showing post-matching results (normally demaracted with a X)
As you can see the X is missing in my graph
Code used:
Code:
global treatment volume global ylist failure global xlist var1 var2 var3 logit $treatment $xlist predict propensity_score sum propensity_score disp .2*0.023 //generates calliper psmatch2 $treatment $xlist, outcome ($ylist) caliper (0.004) noreplace logit pstest $xlist, treated($treatment) both drop if _weight == . //drops the unmatched //This creates graph - which doesn't show the matched values.... pstest $xlist, treated($treatment) both graph

Comment