The Joiner
takes in objects and joins them according to a
defined method into a single node.
Arguments
- method
function to join incoming objects together
Value
a sewage_joiner
object
Note
additional arguments to be passed to method
should be passed in the
...
of [add_node()]
Examples
pipeline = Pipeline() |>
add_node(Joiner(method = rbind), name = "Joiner", input = c("file1", "file2"))