Nothing
.ci <-
function(x,conf.level=0.95) {
tri <- sort(na.omit(x))
if (any(!is.finite(tri))) {tri <- tri[-which(!is.finite(tri))]}
repet <- length(tri)
int <- (1-conf.level)/2
if(repet*int<1) {
int.inf <- ceiling(repet*int)
} else {
int.inf <- floor(repet*int)
}
int.sup <- ceiling(repet*(1-int))
result <- c("Inf"=tri[int.inf],"Sup"=tri[int.sup])
return(result)
}
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.