Nothing
zlimit <- function(x1, n1, x2, n2, conf.level, lim, ta){
z = qchisq(conf.level, 1)
px = x1 / n1
score = 0
repeat{
# When lim = 1, a. = 0 -> quadratic degenerates to linear. Bug corrected 260626
if(abs(lim - 1) < 1e-10){
p2d <- (x1 + x2) / (n1 + n2)
p1d <- p2d
} else {
a. <- n2 * (lim - 1)
b. <- n1 * lim + n2 - (x1 + x2) * (lim - 1)
c. <- -(x1 + x2)
p2d <- (-b. + sqrt(b.^2 - 4 * a. * c.)) / (2 * a.)
p1d <- p2d * lim / (1 + p2d * (lim - 1))
}
score <- ((n1 * (px - p1d))^2) * (1 / (n1 * p1d * (1 - p1d)) + 1 / (n2 * p2d * (1 - p2d)))
ci <- lim
if(ta == 0){
lim <- ci / 1.001
} else {
lim <- ci * 1.001
}
if(score > z){
break
}
}
return(ci)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.