Hi!
I having a problem with the PSMatching (Nearest Neighbor)
I have a sample of public and private firms, which I want to match on size and industry.
Variable: Bors_aks(Dummy variable: public/private), gross_inv_scaled = measure the firms investment level, sumeiend = size of the firm, bransje = industry
I got the message: "The balancing property is not satisfied Try a different specification of the propensity score"
I have tried to read about it, but not sure how I should change the specification. Should I use ln(sumeiend)? should I specify that "bransje(industry" is a dummy variable?
Stata code:
* Define treatment, outcome and independent variables
global treatment bors_aks
global ylist gross_inv_scaled
global xlist sumeiend bransje
global breps 5
* PSM with common support
pscore $treatment $xlist, pscore(myscore) blockid(myblock) comsup
* matching methods
* nearest neighbor matching
attnd $ylist $treatment $xlist, pscore(myscore) comsup boot reps($breps) dots
I having a problem with the PSMatching (Nearest Neighbor)
I have a sample of public and private firms, which I want to match on size and industry.
Variable: Bors_aks(Dummy variable: public/private), gross_inv_scaled = measure the firms investment level, sumeiend = size of the firm, bransje = industry
I got the message: "The balancing property is not satisfied Try a different specification of the propensity score"
I have tried to read about it, but not sure how I should change the specification. Should I use ln(sumeiend)? should I specify that "bransje(industry" is a dummy variable?
Stata code:
* Define treatment, outcome and independent variables
global treatment bors_aks
global ylist gross_inv_scaled
global xlist sumeiend bransje
global breps 5
* PSM with common support
pscore $treatment $xlist, pscore(myscore) blockid(myblock) comsup
* matching methods
* nearest neighbor matching
attnd $ylist $treatment $xlist, pscore(myscore) comsup boot reps($breps) dots
Comment