Nothing
#' @export
orbital.predictions_custom <- function(x, ...) {
input <- x$arguments$commands
if (length(input) == 0) {
return(NULL)
}
out <- vapply(input, rlang::as_label, character(1))
out
}
# Estimate based on number of expressions, ~50 chars each
#' @exportS3Method
estimate_adj_chars.predictions_custom <- function(x, ...) {
n_exprs <- length(x$arguments$commands)
if (n_exprs == 0) {
return(0L)
}
as.integer(n_exprs * 50)
}
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.