#' Calculate standard error
#'
#' @param v numeric vector
#'
#' @return number
#'
#'
#' @export
#'
#' @examples
#' std_err(rnorm(50))
#'
std_err <- function(v) {
sd(v)/sqrt(length(v))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.