Worfklow.transform
Workflow.transform(name) → Transform
Create a reference to the transform within a workflow.
Parameters:
name
: str
The scoped reference to the transform, unique within the workflow. The name is case-insensitive, and can optionally be escaped following general name escaping rules. E.g., "Compute annual precipitation output"
-> "compute_annual_precipitation_output"
. Can optionally include a colon followed by the table reference id, which ensures the lookup will work even if the notebook gets renamed (e.g., "compute_annual_precipitation_output:m7k8"
).
Returns:
Examples
workflow = redivis.user("imathews").workflow("example_workflow_climate_analysis")
transform = workflow.notebook('compute_annual_precipitation')
transform.run()
Last updated
Was this helpful?