I am working on multilevel Poisson. I faced a problem with the svy command when I ran mepoisson. As I am working with the DHS dataset. I have calculated level-1 and level-2 weights according to the DHS report 27. Thereafter, I ran the mepisson command. But mepisson does not support svy. I have also followed the Stata manual for multilevel Poisson modelling to create the command mentioned below. If anyone could, please help me in this matter. Is my mepoison command correct?
* Create a constant cluster-level weight
bysort v001: egen wt2_05_constant = mean(wt2_05)
mepoisson children_born i.dv_any_violence i.region v012 i.education i.residence ///
lom_prof_community ///
[pweight=wt1_05] || v001:, pweight(wt2_05_constant) irr vce(robust)
* Create a constant cluster-level weight
bysort v001: egen wt2_05_constant = mean(wt2_05)
mepoisson children_born i.dv_any_violence i.region v012 i.education i.residence ///
lom_prof_community ///
[pweight=wt1_05] || v001:, pweight(wt2_05_constant) irr vce(robust)

Comment