Nothing
ciLevel <-
function(x, n, p){
if (x == 0){
level <- c(0, p)
} else if (x == n){
level <- c(1 - p, 1)
} else {
level <- c((1 - p) / 2, 1 - (1 - p) / 2)
}
return(c(level, (1 - p) / 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.