Matheus Serpa
03/30/2022, 5:19 PMnode(func=melt_data, inputs="fcl_elevation")
...
def melt_data(df):
# how to get "fcl_elevation" inside func?
datajoely
03/30/2022, 5:23 PMbefore_node_run
doesn't pass anything to the node, but you can often achieve the same goalsantony.milne
04/04/2022, 9:13 AMdef melt_data(**kwargs):
print(kwargs)
node(f, inputs={"fcl_elevation": "fcl_elevation"}, None)