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