Nothing
#' @export
orbital.step_impute_mode <- function(x, all_vars, ...) {
modes <- x$modes
modes <- modes[names(modes) %in% all_vars]
if (length(modes) == 0) {
return(NULL)
}
out <- glue::glue(
"dplyr::if_else(is.na({names(modes)}), \"{modes}\", {names(modes)})"
)
names(out) <- names(modes)
out
}
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.