#' Composing Formulas
#'
#' @param f existing formula or new variable
#' @param add variable to add or used in order to expand formula
#'
#' @export
#'
#' @examples
#' Reduce(f_add, letters)
f_add <- function(f, add){
if(class(add) == "character") add <- as.symbol(add)
if(class(f) == "character") f <- as.symbol(f)
call("+", f, add)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.