#' @title Confidence Interval Function
#'
#' @param x a function
#' @param mean mean
#' @param sd standard deviation
#'
#' @return confidence interval
#' @export
#'
#' @examples
#' \dontrun{myci(x=rnorm(30,20,5))}
myci=function(x=rnorm(30,mean=20,sd=5)){
t.test(x,conf.level=.95)$conf.int
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.