Nothing
#' @export
#' @rdname stabilize_fct
stabilize_fct_scalar <- function(x,
...,
allow_null = TRUE,
allow_zero_length = TRUE,
allow_na = TRUE,
levels = NULL,
to_na = character(),
x_arg = caller_arg(x),
call = caller_env(),
x_class = object_type(x)) {
.stabilize_cls_scalar(
x,
to_cls_scalar_fn = to_fct_scalar,
to_cls_scalar_args = list(levels = levels, to_na = to_na),
allow_null = allow_null,
allow_zero_length = allow_zero_length,
allow_na = allow_na,
x_arg = x_arg,
call = call,
x_class = x_class,
...
)
}
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.