#' Calculate the Standard Error of the Mean
#'
#' @param v a numerical vector
#'
#' @return a number
#' @export
#'
#' @examples
#' standardError(rnorm(50))
#'
#' @importFrom stats sd
standardError <- function(v){
sd(v) / length(v)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.