Displaying 1 result from an estimated 1 matches for "r40157".
Did you mean:
140157
2006 Dec 13
1
Curious finding in MASS:::confint.glm() tied to eval()
...sing the above, along with bootstrap (BCa),
Wilson and Exact to visually demonstrate the variation across the
methods to some folks.
I had initially tried this using:
R version 2.4.0 Patched (2006-11-19 r39944)
However, I just verified that it still occurs in:
R version 2.4.1 RC (2006-12-11 r40157)
In both cases, I started R using '--vanilla' and this is under FC6,
fully updated.
Using the following code, it runs fine:
x <- 14
n <- 35
conf <- 0.95
DF <- data.frame(y = x / n, weights = n)
mod <- glm(y ~ 1, weights = weights, family = binomial(), data = DF)
pl.ci &l...