Warning: non-integer #successes in a binomial glm! (survey packages)

Posted by longrob on Stack Overflow See other posts from Stack Overflow or by longrob
Published on 2012-10-18T10:57:41Z Indexed on 2012/10/18 11:00 UTC
Read the original article Hit count: 157

Filed under:
|

I am using the twang package to create propensity scores, which are used as weigtings in a binomial glm using survey::svyglm. The code looks something like this:

pscore <- ps(ppci ~ var1+var2+.........., data=dt....)

dt$w <- get.weights(pscore, stop.method="es.mean")

design.ps <- svydesign(ids=~1, weights=~w, data=dt,)

glm1 <- svyglm(m30 ~ ppci, design=design.ps,family=binomial)

This produces the following warning:

Warning message:
   In eval(expr, envir, enclos) : non-integer #successes in a binomial glm!

Does anyone know what I could be doing wrong ?

I wasn't sure if this message would be better on stats.SE, but on balance I thought I would try here first.

© Stack Overflow or respective owner

Related posts about r

    Related posts about glm