我正在使用R中的svydesign包来运行调查加权logit回归,如下所示:
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信息的情况下指定调查权重的任何信息都将非常有用。