Nothing
# Convert formula to text and clean using regex
clean_formula <- function(formula) {
formula_text <- deparse(formula)
cleaned <- gsub("\\w+\\$", "", formula_text) # Remove text before $
output <- as.formula(paste(cleaned, collapse = ""))
return(output)
}
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.