Workflow$table

Workflow$table(table_reference) → Table

Create a reference to the table within a workflow.

Parameters:

table_reference : str The scoped reference of the table, unique within the workflow.

Returns:

Table

Examples

workflow <- redivis$user("imathews")$workflow("example_workflow_climate_analysis")

table <- workflow$table('compute_annual_precipitation_output:m7k8')
table$to_tibble()
# 	id	        year	    annual_precip
# 0	CA0023026HN	2003	    2925.0
# ...

Last updated

Was this helpful?