Nothing
#' @export
orbital.step_ratio <- function(x, all_vars, ...) {
columns <- x$columns
if (nrow(columns) == 0) {
return(NULL)
}
col_names <- x$naming(columns$top, columns$bottom)
used_vars <- col_names %in% all_vars
columns <- columns[used_vars, ]
col_names <- col_names[used_vars]
out <- glue::glue("{columns$top} / {columns$bottom}")
names(out) <- col_names
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.