#' 95% Confidence Interval
#'
#' @param x Data frame to calculate ci on.
#'
#' @return 95% confidence interval for the data set.
#' @export
#'
#' @examples myci(c(1,2,3,4))
#' -> (0.4457397, 4.5542603)
#'
#'
myci = function(x) {
return(t.test(x,conf.level=0.95)$conf.int)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.