#' Multiply numbers by a given amount
#'
#' @param input_data tbl containing columns to multiply
#' @param \dots additional parameters passed on to methods
#' @export
multiply_each <- function (input_data, ..., by = 1.0) {
f <- function (x) x * by
mutate_at(input_data, vars(...), ~ f(.))
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.