-
Notifications
You must be signed in to change notification settings - Fork 4
Open
Description
For quick modules, with a single output, it would be nice to be able to use a shorthand. Something like the following:
module:
name: big complex module
inputs:
dataset: smooth(csv('C:\data\dataset.csv), 0.3)Which would be equivalent to
- module:
name: csv
inputs:
file: 'C:\data\data.csv'
- module:
name: smooth
inputs:
data: csv.result
smoothing factor: 0.3
- module:
name: big complex module
inputs:
dataset: smooth.resultThis should be thought out carefully on the design level before implementation.