#' Confidence Interval
#'
#' Finds the default confidence interval for a 2 sample population
#'
#' @param x random single sample
#'
#' @return conf interval
#'
#'
#'
#' @export
#' @examples x = rnorm(30, mean=10, sd=12)
myci<-function(x){
return(t.test(x)$conf.int)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.