#' Standard Error
#'
#' Computes the standard error.
#'
#' @param v numeric vector
#'
#' @return number
#' @importFrom stats sd
#' @export
#'
#' @examples
#' standard_error(rnorm(100))
standard_error <- function(v){
numerator <- sd(v)
denominator <- sqrt(length(v))
numerator/denominator
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.