Nothing
#' @section Row-bind block:
#' Row-wise concatenation of an arbitrary number of `data.frame`s, as performed
#' by [base::rbind()] is available as an `rbind_block`. This mainly serves as
#' an example for a variadic block via the "special" `...args` block data
#' argument.
#'
#' @rdname new_transform_block
#' @export
new_rbind_block <- function(...) {
new_transform_block(
function(id, ...args) {
moduleServer(
id,
function(input, output, session) {
arg_names <- reactive(
set_names(names(...args), dot_args_names(...args))
)
list(
expr = reactive(
bquote(
rbind(..(dat)),
list(dat = lapply(arg_names(), as.name)),
splice = TRUE
)
),
state = list()
)
}
)
},
dat_valid = function(...args) {
stopifnot(length(...args) >= 1L)
},
allow_empty_state = TRUE,
class = "rbind_block",
...
)
}
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.