I conducted propensity score matching and have now a dataset with observations which treated and untreated variables and the respective fweights for each observation.
How can I run a regression using the fweights? I tried the following, where _weight is the variable indicating the weight of each observation:
But it results in the error: "may not use noninteger frequency weights"
How can I run a regression using the fweights? I tried the following, where _weight is the variable indicating the weight of each observation:
Code:
regress deal total_acc_freq_5 BV_ln_lag1 BTM_lag1 LEV_lag1 ROA_lag1 CAPEX_lag1 Cash_lag1 i.Year i.SIC_two [fweight=_weight]
Comment