I'm new to this forum, so please excuse if I miss anything I read in the FAQ, it is not on purpose:
I'm using Stata 13 with the current version of PSMATCH2 (downloaded last week at REPEC).
I want to test for the effects of firm characteristics on the labour productivity and one of the core variables is the reception of public support. As this variable is generally not random I implemented a propensity score matching with PSMATCH2 first:
Is it then useful to implement the _weights as pweights in the regression or as fweights?
I used
I hope you can help me whether this is a valid approach to implement the propensity scores, as none of my colleagues here has used PSM earlier.
Best regards and thanks in advance.
I'm using Stata 13 with the current version of PSMATCH2 (downloaded last week at REPEC).
I want to test for the effects of firm characteristics on the labour productivity and one of the core variables is the reception of public support. As this variable is generally not random I implemented a propensity score matching with PSMATCH2 first:
Code:
psmatch2 funding var1 var2 var3, outcome(labprod) ps() ate by _treated, sort: sum funding _treated _pscore var1 var2 var3
I used
Code:
regress labprod funding var1 var2 var3 [pweight = _weight], rob
Best regards and thanks in advance.

Comment