Re: [R] confint.glm(...) fails for binomial count data format

2008-12-07 Thread Prof Brian Ripley
For the record, this is because that example has a useless row (row 24 has no respondents and so adds nothing). confint() works if you remove the pointless row. We'll add a precautionary check in due course, but such datasets are unsurprisingly rare. On Sun, 16 Nov 2008, Xiaoxu LI wrote:

[R] confint.glm(...) fails for binomial count data format

2008-11-16 Thread Xiaoxu LI
##Q1. confint.glm(...) fails for an example of HSAUR data("womensrole", package = "HSAUR"); ## summary(womensrole); womensrole_glm_2 <- glm(fm2, data = womensrole,family = binomial()) ## summary(womensrole_glm_2); confint(womensrole_glm_2); ## ---Fail- # Waiting for profiling to be don