#' Take some numbers, return
#'
#' @param vals vector of numbers
#'
#' @return The prediction
#' @import clickstream
#' @export
summary <- function(vals) {
list(
mean = mean(vals),
sd = sd(vals),
min = min(vals),
max = max(vals)
)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.