Nothing
      #' Extract a formula from a test
#' 
#' Extracts a formula of the form \code{dependent ~ .} from the test object
#' @param test An object of class 'regression' or 'classification'
#' @importFrom stats as.formula
extract_formula <- function(test){
  as.formula(paste(test$dependent, "~."))
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.