# inputs
one_predictor_df <- data.frame(x = 1:5, y = 6:10)
one_predictor_formula <- x ~ y
two_predictors_df <- data.frame(x = 1:5, y = 6:10, z = 16:20)
two_predictors_formula <- x ~ y + z
three_predictors_df <- data.frame(x = 1:5, y = 6:10, z = 16:20, w = 51:55)
three_predictors_formula <- x ~ y + z + w
empty_df <- data.frame()
no_col_has_rows_df <- two_predictors_df[,FALSE]
not_df <- list(1, 2, 3, 4)
bin <- TRUE
not_formula <- "x"
recipe_type <- "recipe"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.