这显然是R的survey package特质。我正在尝试使用plyr package中的llply
来制作svyglm
模型的列表。这是一个例子:
library(survey)
library(plyr)
foo <- data.frame(y1 = rbinom(50, size = 1, prob=.25),
y2 = rbinom(50, size = 1, prob=.5),
y3 = rbinom(50, size = 1, prob=.75),
x1 = rnorm(50, 0, 2),
x2 = rnorm(50, 0, 2),
x3 = rnorm(50, 0, 2),
weights = runif(50, .5, 1.5))
我的因变量列号列表
dvnum <- 1:3
表示此样本中没有聚类或地层
wd <- svydesign(ids= ~0, strata= NULL, weights= ~weights, data = foo)
一次svyglm通话有效
svyglm(y1 ~ x1 + x2 + x3, design= wd)
llply
将列出基本的R glm
模型llply(dvnum, function(i) glm(foo[,i] ~ x1 + x2 + x3, data = foo))
但是,当我尝试使此方法适应
llply
时,svyglm
引发以下错误llply(dvnum, function(i) svyglm(foo[,i] ~ x1 + x2 + x3, design= wd))
Error in svyglm.survey.design(foo[, i] ~ x1 + x2 + x3, design = wd) :
all variables must be in design= argument
所以我的问题是:如何使用
llply
和svyglm
? 最佳答案
DWin对正确的公式发表了评论。reformulate
将执行此操作。
dvnum <- names(foo)[1:3]
llply(dvnum, function(i) {
svyglm(reformulate(c('x1', 'x2', 'x3'),response = i), design = wd)})