Displaying 1 result from an estimated 1 matches for "sexmg".
Did you mean:
sexm
2009 Jan 11
1
calibrate function
...6 MG_54 MG_H MG_NE
7 MG_54 MG_H MG_NE
8 MG_54 MG_H MG_NE
9 MG_54 MG_H MG_NE
10 MG_54 MG_H MG_NE
…
My program is:
grap<-svydesign(id=~1, data=ecodiaMG)
regMG <-c(region1MG_NE =852, region1MG_NO=662, region1MG_P=636,
region1MG_SE=961, region1MG_SO=545)
sexMG <-c(sexe1MG_F =976, sexe1MG_H=2680)
ageMG <-c(age_cl1MG_40 =380, age_cl1MG_4054=2099, age_cl1MG_54=1177)
grap2<- calibrate(grap, formula= ~ age_cl1-1, c(ageMG))
grap3<- calibrate(grap2, formula= ~ sexe1-1, c(sexMG))
grap4<- calibrate(grap3, formula= ~region1-1, c(regMG))
I ca...