#' Function to output the standard error of mean from input vector
#'
#' @param x
#' @keywords data_analysis
#' @export
#' @examples
#' sem()
sem <- 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.