Pakistan 2014 - Using correct weights for domestic violence [message #8478] |
Sun, 01 November 2015 23:50 |
gspek
Messages: 4 Registered: November 2015
|
Member |
|
|
I am using the Pakistan 2014 women's dataset for analysis of associations between women's empowerment (and individual and community level) and domestic violence experiences (at individual level). I am currently struggling with a couple of issues:
1. How do I correctly weight community-level independent variables? I tried to create community-level weighted means for average percentage of women working in a community, average decision making index value, and percentage in community accepting of any domestic violence justification scenarios (with participant's values excluded). However, I'm not sure how to approach the weights in regressions where both the community and individual level independent variables are included.
foreach var of varlist works dm_sum dvaccept_any{
gen `var'_w = `var'*wgt if !missing(`var') & nocomm == 0
bys v001: gen `var'_agg_w = sum(`var'_w) if nocomm == 0
gen `var'_comm_w = (`var'_agg_w - `var'_w)/(clustersz - 1) if nocomm == 0
}
2. For stata logic analysis (and summary statistics), do I use iweights or pweights?
Thank you!
|
|
|