Nothing
ci.wald <-
function(x, y, accuracy.measure, measure, n, conf.level) {
if ((any (x <= 20)) | (any(y <= 20))) {
warning(paste(accuracy.measure, " CI: \"Wald\" method may not be valid for some values (see Help Manual).\n", sep = ""), call. = FALSE, immediate. = TRUE)
}
z <- qnorm(1-((1-conf.level)/2))
ll <- measure-(z*sqrt((measure*(1-measure))/n)+1/(2*n))
ul <- measure+(z*sqrt((measure*(1-measure))/n)+1/(2*n))
res <- list (ci = matrix(c(ll,ul), ncol = 2))
}
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.