#' Averages two numbers
#'
#'Averages two numbers.
#'
#' @param a number
#' @param b number
#'
#' @return number
#' @export
#'
#' @examples
#'
average_two <- function(a, b) {
c <- (a+b)/2
return(c)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.