Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question
What is type of variable is m30? – James Oct 18 '12 at 11:04
@james, m30 is binary – Robert Long Oct 18 '12 at 11:16
The weights must be non-integral then. A binomial fit tries to find the probability of success in a discrete number of trials. – James Oct 18 '12 at 11:36
@james the weights are non-integral - they are inverse-probabilities (inverse of the propensity scores) - that's what the twang+survey combination is supposed to be implementing..... – Robert Long Oct 18 '12 at 12:01

1 Answer

up vote 6 down vote accepted

There's nothing wrong, glm is just picky when it comes to specifying binomial (and Poisson) models. It warns if it detects that the no. of trials or successes is non-integral, but it goes ahead and fits the model anyway. If you want to suppress the warning (and you're sure it's not a problem), use family=quasibinomial instead.

share|improve this answer
Indeed, and IIRC all a GLM really needs to know is the stated mean-variance relationship (which is what the quasi() families do/allow), the form of the actual data doesn't really matter. The warning is more a bit of nannying I believe. – Gavin Simpson Oct 18 '12 at 12:05
Yes, although I've seen a lot of cases where people noticed they were doing something silly because of this warning ... – Ben Bolker Oct 18 '12 at 13:36
@BenBolker thanks for your comment. Of course, the reason I posted the question is that I am worried I am doing something silly. – Robert Long Oct 18 '12 at 18:57

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.