#' Calculate the standard error of the mean of a vector
#'
#' @param x numeric vector
#'
#' @return Standard error of the mean
#'
#' @examples
#' x <- rnorm(100)
#' stdErrMean(x)
#'
#' @export
#'
stdErrMean <- function(x) {
sd(x) / sqrt(length(x))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.