R で svydesign パッケージを使用して、次のように調査加重ロジット回帰を実行しています。
sdobj <- svydesign(id = ~0, weights = ~chweight, strata = ~strata, data = svdat)
model1 <- svyglm(formula=formula1,design=sdobj,family = quasibinomial)
ただし、ドキュメントには、有限母集団補正 (FPC) を指定しない回帰に関する警告が記載されています。
If fpc is not specified then sampling is assumed to be
with replacement at the top level and only the first stage of
cluster is used in computing variances.
残念ながら、各レベルで母集団を特定するのに十分な情報がありません (その中のサンプルはほとんど採取していません)。FPC情報なしで調査重量を指定する方法に関する情報は非常に役立ちます.