##' Compute mean values with confidence intervals
##'
##' Normal approximation
##' @title Compute mean values with confidence intervals
##' @param x object passed to methods
##' @param ... passed to methods
##' @return a list with mean values and confidence limits
##' @export
ci.mean <- function(x,...){
UseMethod("ci.mean",object=x)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.