#' A test Function
#'
#' This function allows you to get n random numbers
#' @param n Number of random numbers
#' @keywords random numbers
#' @export
#' @examples
#' rand_values()
rand_values<-function(n=50){
runif(n)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.