pull_output | R Documentation |
Extract output components from a pipeline
pull_output(x, component, ...)
## S3 method for class 'sewage_pipeline'
pull_output(x, component, ...)
x |
an executed pipeline object |
component |
a character string specifying which output component to pull |
... |
reserved for future use |
output from a terminating node of an executed sewage pipeline
pipeline = Pipeline() |>
add_node(component = head, name = "Head", input = 'file')
result = run(pipeline, file = iris)
pull_output(result, "Head")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.