#' Average of numbers
#'
#' @param x A vector of input numbers
#'
#' @return a mean value
#'
#' @export
#'
#' @examples
#' average_of(c(2,3))
average_of <- function(x){
output <- mean(x)
return(output)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.