#' Compute the standard error of the mean, assuming a normal distribution
#'
#' @param x numeric vector.
#'
#' @returns The value of the standard error of the mean = sd / sqrt(n)
#' @export
se <- function(x) {stats::sd(x)/sqrt(length(x))}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.