pull_output {sewage}R Documentation

Extract output components from a pipeline

Description

Extract output components from a pipeline

Usage

pull_output(x, component, ...)

## S3 method for class 'sewage_pipeline'
pull_output(x, component, ...)

Arguments

x

an executed pipeline object

component

a character string specifying which output component to pull

...

reserved for future use

Value

output from a terminating node of an executed sewage pipeline

Examples

pipeline = Pipeline() |>
    add_node(component = head, name = "Head", input = 'file')
result = run(pipeline, file = iris)
pull_output(result, "Head")

[Package sewage version 0.2.5 Index]